In [2]:
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
%matplotlib inline

# ## Plotly plotting support
# import plotly.plotly as py

import plotly.offline as py
py.init_notebook_mode(connected=False)

import plotly.graph_objs as go
import plotly.figure_factory as ff
import cufflinks as cf

cf.set_config_file(offline=True, world_readable=True, theme='ggplot')

Introduction

In this lecture we examine the process of data cleaning and Exploratory Data Analysis (EDA). Often you will acquire or even be given a collection of data in order to conduct some analysis or answer some questions. The first step in using that data is to ensure that it is in the correct form (cleaned) and that you understand its properties and limitations (EDA). Often as you explore data through EDA you will identify additional transformations that may be required before the data is ready for analysis.

In this notebook we obtain crime data from the city of Berkeley's public records. Ultimately, our goal might be to understand policing patterns but before we get there we must first clean and understand the data.

Getting the Data

To begin this analysis we want to get data about crimes in Berkeley. Remarkably, the city of Berkeley maintains an Open Data Portal for citizens to access data about the city. We will be examining the:

  1. Call Data
  2. Stop Data

Fortunately, this data is also relatively well document with detailed descriptions of what it contains. Here are summaries of the fields in the data:

Calls Data

Stop Data

Most data has bad documentation:

Unfortunately, data is seldom well documented and when it is you may not be able to trust the documentation. It is therefore critical that when we download the data we investigate the fields and verify that it reflects the assumptions made in the documentation.

Reproducible Data Science

In the interest of reproducible data science we will download the data programatically. We have defined some helper functions in the utils.py file. I can then reuse these helper functions in many different notebooks.

In [3]:
from utils import fetch_and_cache
In [4]:
help(fetch_and_cache)
Help on function fetch_and_cache in module utils:

fetch_and_cache(data_url, file, data_dir='data', force=False)
    Download and cache a url and return the file object.
    
    data_url: the web address to download
    file: the file in which to save the results.
    data_dir: (default="data") the location to save the data
    force: if true the file is always re-downloaded
    
    return: The pathlib.Path object representing the file.

I can actually look at the source code in the notebook.

In [5]:
fetch_and_cache??

Occasionally, you will want to modify code that you have imported. To reimport those modifications you can either use the python importlib library:

from importlib import reload
import utils;reload(utils);

or use IPython magic which will intelligently import code when files change:

%load_ext autoreload
%autoreload 2

Downloading the Data

Notice that because I record how I got the data in the notebook, others can reproduce this experiment. However, it is worth noting that the data can change. We will want to pay attention to file timestamps.

In [6]:
from importlib import reload
import utils;reload(utils);
from utils import fetch_and_cache

calls_file = fetch_and_cache("https://data.cityofberkeley.info/api/views/k2nh-s5h5/rows.csv?accessType=DOWNLOAD",
                "calls_for_service.csv", force=False)
Using version already downloaded: Thu Sep  6 17:49:10 2018
MD5 hash of file: beed508fd11d934a1d9cf5353f89f305
In [7]:
stops_file = fetch_and_cache("https://data.cityofberkeley.info/api/views/6e9j-pj9p/rows.json?accessType=DOWNLOAD",
                "stops.json", force=False)
Using version already downloaded: Thu Sep  6 17:49:14 2018
MD5 hash of file: f24fa17750ea496f2605c1c34c8b6105

To demonstrated live downloading (of something we won't need in lecture) we can download professor Gonzalez's website.

In [8]:
gonzalez_file = fetch_and_cache("https://people.eecs.berkeley.edu/~jegonzal/assets/jegonzal.jpg", 
                                "gonzalez.jpg", 
                                force=True)
[##                                       ]
Downloaded jegonzal.jpg!
MD5 hash of file: ab428e2864152b70e28e58941b10f47d

Exploring the data

Now that we have obtained the data we want to understand its:

  • Structure -- the "shape" of a data file
  • Granularity -- how fine/coarse is each datum
  • Scope -- how (in)complete is the data
  • Temporality -- how is the data situated in time
  • Faithfulness -- how well does the data capture "reality"

Structure

Before we even begin to load the data it often helps to understand a little about the high-level structure:

  1. How much data do I have?
  2. How is it formatted?

How big is the data?

I often like to start my analysis by getting a rough estimate of the size of the data. This will help inform the tools I use and how I view the data. If it is relatively small I might use a text editor or a spreadsheet to look at the data. If it is larger, I might jump to more programmatic exploration or even used distributed computing tools.

In [9]:
type(stops_file)
Out[9]:
pathlib.PosixPath
In [10]:
help(stops_file)
Help on PosixPath in module pathlib object:

class PosixPath(Path, PurePosixPath)
 |  Path subclass for non-Windows systems.
 |  
 |  On a POSIX system, instantiating a Path should return this object.
 |  
 |  Method resolution order:
 |      PosixPath
 |      Path
 |      PurePosixPath
 |      PurePath
 |      builtins.object
 |  
 |  Methods inherited from Path:
 |  
 |  __enter__(self)
 |  
 |  __exit__(self, t, v, tb)
 |  
 |  absolute(self)
 |      Return an absolute version of this path.  This function works
 |      even if the path doesn't point to anything.
 |      
 |      No normalization is done, i.e. all '.' and '..' will be kept along.
 |      Use resolve() to get the canonical path to a file.
 |  
 |  chmod(self, mode)
 |      Change the permissions of the path, like os.chmod().
 |  
 |  exists(self)
 |      Whether this path exists.
 |  
 |  expanduser(self)
 |      Return a new path with expanded ~ and ~user constructs
 |      (as returned by os.path.expanduser)
 |  
 |  glob(self, pattern)
 |      Iterate over this subtree and yield all existing files (of any
 |      kind, including directories) matching the given pattern.
 |  
 |  group(self)
 |      Return the group name of the file gid.
 |  
 |  is_block_device(self)
 |      Whether this path is a block device.
 |  
 |  is_char_device(self)
 |      Whether this path is a character device.
 |  
 |  is_dir(self)
 |      Whether this path is a directory.
 |  
 |  is_fifo(self)
 |      Whether this path is a FIFO.
 |  
 |  is_file(self)
 |      Whether this path is a regular file (also True for symlinks pointing
 |      to regular files).
 |  
 |  is_socket(self)
 |      Whether this path is a socket.
 |  
 |  is_symlink(self)
 |      Whether this path is a symbolic link.
 |  
 |  iterdir(self)
 |      Iterate over the files in this directory.  Does not yield any
 |      result for the special paths '.' and '..'.
 |  
 |  lchmod(self, mode)
 |      Like chmod(), except if the path points to a symlink, the symlink's
 |      permissions are changed, rather than its target's.
 |  
 |  lstat(self)
 |      Like stat(), except if the path points to a symlink, the symlink's
 |      status information is returned, rather than its target's.
 |  
 |  mkdir(self, mode=511, parents=False, exist_ok=False)
 |      Create a new directory at this given path.
 |  
 |  open(self, mode='r', buffering=-1, encoding=None, errors=None, newline=None)
 |      Open the file pointed by this path and return a file object, as
 |      the built-in open() function does.
 |  
 |  owner(self)
 |      Return the login name of the file owner.
 |  
 |  read_bytes(self)
 |      Open the file in bytes mode, read it, and close the file.
 |  
 |  read_text(self, encoding=None, errors=None)
 |      Open the file in text mode, read it, and close the file.
 |  
 |  rename(self, target)
 |      Rename this path to the given path.
 |  
 |  replace(self, target)
 |      Rename this path to the given path, clobbering the existing
 |      destination if it exists.
 |  
 |  resolve(self, strict=False)
 |      Make the path absolute, resolving all symlinks on the way and also
 |      normalizing it (for example turning slashes into backslashes under
 |      Windows).
 |  
 |  rglob(self, pattern)
 |      Recursively yield all existing files (of any kind, including
 |      directories) matching the given pattern, anywhere in this subtree.
 |  
 |  rmdir(self)
 |      Remove this directory.  The directory must be empty.
 |  
 |  samefile(self, other_path)
 |      Return whether other_path is the same or not as this file
 |      (as returned by os.path.samefile()).
 |  
 |  stat(self)
 |      Return the result of the stat() system call on this path, like
 |      os.stat() does.
 |  
 |  symlink_to(self, target, target_is_directory=False)
 |      Make this path a symlink pointing to the given path.
 |      Note the order of arguments (self, target) is the reverse of os.symlink's.
 |  
 |  touch(self, mode=438, exist_ok=True)
 |      Create this file with the given access mode, if it doesn't exist.
 |  
 |  unlink(self)
 |      Remove this file or link.
 |      If the path is a directory, use rmdir() instead.
 |  
 |  write_bytes(self, data)
 |      Open the file in bytes mode, write to it, and close the file.
 |  
 |  write_text(self, data, encoding=None, errors=None)
 |      Open the file in text mode, write to it, and close the file.
 |  
 |  ----------------------------------------------------------------------
 |  Class methods inherited from Path:
 |  
 |  cwd() from builtins.type
 |      Return a new path pointing to the current working directory
 |      (as returned by os.getcwd()).
 |  
 |  home() from builtins.type
 |      Return a new path pointing to the user's home directory (as
 |      returned by os.path.expanduser('~')).
 |  
 |  ----------------------------------------------------------------------
 |  Static methods inherited from Path:
 |  
 |  __new__(cls, *args, **kwargs)
 |      Construct a PurePath from one or several strings and or existing
 |      PurePath objects.  The strings and path objects are combined so as
 |      to yield a canonicalized path, which is incorporated into the
 |      new PurePath object.
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from PurePath:
 |  
 |  __bytes__(self)
 |      Return the bytes representation of the path.  This is only
 |      recommended to use under Unix.
 |  
 |  __eq__(self, other)
 |      Return self==value.
 |  
 |  __fspath__(self)
 |  
 |  __ge__(self, other)
 |      Return self>=value.
 |  
 |  __gt__(self, other)
 |      Return self>value.
 |  
 |  __hash__(self)
 |      Return hash(self).
 |  
 |  __le__(self, other)
 |      Return self<=value.
 |  
 |  __lt__(self, other)
 |      Return self<value.
 |  
 |  __reduce__(self)
 |      helper for pickle
 |  
 |  __repr__(self)
 |      Return repr(self).
 |  
 |  __rtruediv__(self, key)
 |  
 |  __str__(self)
 |      Return the string representation of the path, suitable for
 |      passing to system calls.
 |  
 |  __truediv__(self, key)
 |  
 |  as_posix(self)
 |      Return the string representation of the path with forward (/)
 |      slashes.
 |  
 |  as_uri(self)
 |      Return the path as a 'file' URI.
 |  
 |  is_absolute(self)
 |      True if the path is absolute (has both a root and, if applicable,
 |      a drive).
 |  
 |  is_reserved(self)
 |      Return True if the path contains one of the special names reserved
 |      by the system, if any.
 |  
 |  joinpath(self, *args)
 |      Combine this path with one or several arguments, and return a
 |      new path representing either a subpath (if all arguments are relative
 |      paths) or a totally different path (if one of the arguments is
 |      anchored).
 |  
 |  match(self, path_pattern)
 |      Return True if this path matches the given pattern.
 |  
 |  relative_to(self, *other)
 |      Return the relative path to another path identified by the passed
 |      arguments.  If the operation is not possible (because this is not
 |      a subpath of the other path), raise ValueError.
 |  
 |  with_name(self, name)
 |      Return a new path with the file name changed.
 |  
 |  with_suffix(self, suffix)
 |      Return a new path with the file suffix changed (or added, if none).
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from PurePath:
 |  
 |  anchor
 |      The concatenation of the drive and root, or ''.
 |  
 |  drive
 |      The drive prefix (letter or UNC path), if any.
 |  
 |  name
 |      The final path component, if any.
 |  
 |  parent
 |      The logical parent of the path.
 |  
 |  parents
 |      A sequence of this path's logical parents.
 |  
 |  parts
 |      An object providing sequence-like access to the
 |      components in the filesystem path.
 |  
 |  root
 |      The root of the path, if any.
 |  
 |  stem
 |      The final path component, minus its last suffix.
 |  
 |  suffix
 |      The final component's last suffix, if any.
 |  
 |  suffixes
 |      A list of the final component's suffixes, if any.

In [11]:
stops_file.stat()
Out[11]:
os.stat_result(st_mode=33188, st_ino=293192338, st_dev=16777224, st_nlink=1, st_uid=507, st_gid=20, st_size=9168085, st_atime=1536283336, st_mtime=1536281354, st_ctime=1536281354)
In [12]:
calls_file.stat().st_size
Out[12]:
687611

All the files are relatively small and we could comfortable examine them in a text editors. (Personally, I like Visual Studio Code or emacs but others may have a different view.).

In listing the files I noticed that the names suggest that they are all text file formats:

  • CSV: Comma separated values is a very standard table format.
  • JSON: JavaScript Object Notation is a very standard semi-structured file format used to store nested data.

We will dive into the formats in a moment. However because these are text data I might also want to investigate the number of lines which often correspond to records.

In [13]:
from utils import line_count
help(line_count)
Help on function line_count in module utils:

line_count(file)
    Computes the number of lines in a file.
    
    file: the file in which to count the lines.
    return: The number of lines in the file

In [14]:
print("Lines in the calls file", line_count(calls_file))
Lines in the calls file 11343
In [15]:
print("Lines in the stops file", line_count(stops_file))
Lines in the stops file 42999

If your IPython session is running on a POSIX compliant machine (e.g., mac/linux) you could also run:

!wc data/*

which would produce (lines, words, characters):

   16053   85512  976004 data/calls_for_service.csv
     148    1541   54988 data/gonzalez.jpg
   29850  658525 6123225 data/stops.json
   46051  745578 7154217 total
In [16]:
!wc data/*
   11343   59935  687611 data/calls_for_service.csv
     148    1541   54988 data/gonzalez.jpg
   42998  972624 9168085 data/stops.json
   54489 1034100 9910684 total

If we wanted to learn more about the command we could use the man (short for manual) command to read the manual page for wc (word count).

Additional File Meta-Data

Meta-data is data about the data. Most filesystems will maintain information about when a file was created, read, or modified. Below we use the Python time library to print the time in the local representation. Note, time is often measured in Unix Time (time in second since January 1st, 1970).

In [17]:
import time 
print("Time of creation (seconds since Epoch):", 
      stops_file.stat().st_ctime)
print("Local time of creation:", 
      time.ctime(stops_file.stat().st_ctime))
Time of creation (seconds since Epoch): 1536281354.0
Local time of creation: Thu Sep  6 17:49:14 2018

What is the file format? (Can we trust extensions?)

We already noticed that the files end in csv and json which suggests that these are comma separated and javascript object files respectively. However, we can't always rely on the naming as this is only a convention. For example, here we picked the name of the file when downloading based on some hints in the URL.

Often files will have incorrect extensions or no extension at all.

Let's assume that these are text files (and do not contain binary encoded data) so we can print a "few lines" to get a better understanding of the file.

In [18]:
from utils import head
help(head)
Help on function head in module utils:

head(filename, lines=5)
    Returns the first few lines of a file.
    
    filename: the name of the file to open
    lines: the number of lines to include
    
    return: A list of the first few lines from the file.

In [19]:
head(calls_file)
Out[19]:
['CASENO,OFFENSE,EVENTDT,EVENTTM,CVLEGEND,CVDOW,InDbDate,Block_Location,BLKADDR,City,State\n',
 '18022300,DISTURBANCE,04/18/2018 12:00:00 AM,22:17,DISORDERLY CONDUCT,3,09/06/2018 03:30:12 AM,"OREGON STREET &amp; MCGEE AVE\n',
 'Berkeley, CA\n',
 '(37.856572, -122.275241)",OREGON STREET & MCGEE AVE,Berkeley,CA\n',
 '18026683,THEFT MISD. (UNDER $950),05/09/2018 12:00:00 AM,21:25,LARCENY,3,09/06/2018 03:30:13 AM,"200 UNIVERSITY AVE\n']

Note: Because the gonzalez_file is a JPEG (image) it is not a character file format and looking at the head of the file isn't going to work:

In [20]:
head(stops_file)
Out[20]:
['{\n',
 '  "meta" : {\n',
 '    "view" : {\n',
 '      "id" : "6e9j-pj9p",\n',
 '      "name" : "Berkeley PD - Stop Data",\n']
In [21]:
#head(gonzalez_file)

What are some observations about Calls data?

  1. It appears to be in comma separated value (CSV) format.
  2. First line contains the column headings.
  3. There are lots of new-line \n characters:
    • at the ends of lines (delimiting records?)
    • within records as part of addresses.
  4. There are "quoted" strings in the Block_Location column:
    "2500 LE CONTE AVE
    Berkeley, CA
    (37.876965, -122.260544)"
    these are going to be difficult. What are the implications on our earlier line count calculations?
In [22]:
head(calls_file)
Out[22]:
['CASENO,OFFENSE,EVENTDT,EVENTTM,CVLEGEND,CVDOW,InDbDate,Block_Location,BLKADDR,City,State\n',
 '18022300,DISTURBANCE,04/18/2018 12:00:00 AM,22:17,DISORDERLY CONDUCT,3,09/06/2018 03:30:12 AM,"OREGON STREET &amp; MCGEE AVE\n',
 'Berkeley, CA\n',
 '(37.856572, -122.275241)",OREGON STREET & MCGEE AVE,Berkeley,CA\n',
 '18026683,THEFT MISD. (UNDER $950),05/09/2018 12:00:00 AM,21:25,LARCENY,3,09/06/2018 03:30:13 AM,"200 UNIVERSITY AVE\n']

What are some observations about Stops data?

This appears to be a fairly standard JSON file. We notice that the file appears to contain a description of itself in a field called "meta" (which is presumably short for meta-data). We will come back to this meta data in a moment but first let's quickly discuss the JSON file format.

In [23]:
head(stops_file, lines=20)
Out[23]:
['{\n',
 '  "meta" : {\n',
 '    "view" : {\n',
 '      "id" : "6e9j-pj9p",\n',
 '      "name" : "Berkeley PD - Stop Data",\n',
 '      "attribution" : "Berkeley Police Department",\n',
 '      "averageRating" : 0,\n',
 '      "category" : "Public Safety",\n',
 '      "createdAt" : 1444171604,\n',
 '      "description" : "This data was extracted from the Department’s Public Safety Server and covers the data beginning January 26, 2015.  On January 26, 2015 the department began collecting data pursuant to General Order B-4 (issued December 31, 2014).  Under that order, officers were required to provide certain data after making all vehicle detentions (including bicycles) and pedestrian detentions (up to five persons).  This data set lists stops by police in the categories of traffic, suspicious vehicle, pedestrian and bicycle stops.  Incident number, date and time, location and disposition codes are also listed in this data.\\r\\n\\r\\nAddress data has been changed from a specific address, where applicable, and listed as the block where the incident occurred.  Disposition codes were entered by officers who made the stop.  These codes included the person(s) race, gender, age (range), reason for the stop, enforcement action taken, and whether or not a search was conducted.\\r\\n\\r\\nThe officers of the Berkeley Police Department are prohibited from biased based policing, which is defined as any police-initiated action that relies on the race, ethnicity, or national origin rather than the behavior of an individual or information that leads the police to a particular individual who has been identified as being engaged in criminal activity.",\n',
 '      "displayType" : "table",\n',
 '      "downloadCount" : 537,\n',
 '      "hideFromCatalog" : false,\n',
 '      "hideFromDataJson" : false,\n',
 '      "indexUpdatedAt" : 1526358841,\n',
 '      "newBackend" : false,\n',
 '      "numberOfComments" : 0,\n',
 '      "oid" : 28816359,\n',
 '      "provenance" : "official",\n',
 '      "publicationAppendEnabled" : false,\n']

A quick note on JSON

JSON (JavaScript Object Notation) is a common format for exchanging complex structured and semi-structured data.

{
    "field1": "value1",
    "field2": ["list", "of", "values"],
    "myfield3": {"is_recursive": true, "a null value": null}
}

A few key points:

  • JSON is a recursive format in that JSON fields can also contain JSON objects
  • JSON closely matches Python Dictionaries:
    d = {
      "field1": "value1",
      "field2": ["list", "of", "values"],
      "myfield3": {"is_recursive": True, "a null value": None}
    }
    print(d['myfield3'])
    
  • Very common in web technologies (... JavaScript)
  • Many languages have tools for loading and saving JSON objects

Loading the Data

We will now attempt to load the data into python. We will be using the Pandas dataframe library for basic tabular data analysis. Fortunately, the Pandas library has some relatively sophisticated functions for loading data.

Loading the Calls Data

Because the file appears to be a relatively well formatted CSV we will attempt to load it directly and allow the Pandas Library to deduce column headers. (Always check that first row and column look correct after loading.)

In [24]:
calls = pd.read_csv(calls_file, warn_bad_lines=True)
calls.head()
Out[24]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA

How many records did we get?

In [25]:
calls.size
Out[25]:
41668

Preliminary observations on the data?

  1. EVENTDT -- Contain the incorrect time stamp
  2. EVENTTM -- Contains the time in 24 hour format (What timezone?)
  3. CVDOW -- Appears to be some encoding of the day of the week (see data documentation).
  4. InDbDate -- Appears to be correctly formatted and appears pretty consistent in time.
  5. Block_Location -- Errr, what a mess! newline characters, and Geocoordinates all merged!! Fortunately, this field was "quoted" otherwise we would have had trouble parsing the file. (why?)
  6. BLKADDR -- This appears to be the address in Block Location.
  7. City and State seem redundant given this is supposed to be the city of Berkeley dataset.

Checking that the City and State fields are redundant

We notice that there are city and state columns. Since this is supposed to be data for the city of Berkeley these columns appear to be redundant. Let's quickly compute the number of occurences of unique values for these two columns.

In [26]:
calls.groupby(["City", "State"]).count()
Out[26]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR
City State
Berkeley CA 3788 3788 3788 3788 3788 3788 3788 3788 3766

Decoding day of the week

According to the documentation CVDOW=0 is Sunday, CVDOW=1 is Monday, ..., Therefore we can make a series to decode the day of the week for each record and join that series with the calls data.

In [27]:
dow = pd.Series(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], name="DoW")
dow
Out[27]:
0       Sunday
1       Monday
2      Tuesday
3    Wednesday
4     Thursday
5       Friday
6     Saturday
Name: DoW, dtype: object
In [28]:
calls['Day'] = dow[calls['CVDOW']].reset_index(drop=True)
calls.head()
Out[28]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA Tuesday
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA Saturday

We can also accomplish the same task using a join.

In [29]:
df_dow = pd.DataFrame(dow)
pd.merge(calls, df_dow, left_on='CVDOW', right_index=True).head()
Out[29]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day DoW
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday Wednesday
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday Wednesday
6 18090660 IDENTITY THEFT 04/04/2018 12:00:00 AM 14:00 FRAUD 3 09/06/2018 03:30:12 AM 1000 EUCLID AVE\nBerkeley, CA\n(37.891594, -12... 1000 EUCLID AVE Berkeley CA Wednesday Wednesday
7 18091024 THEFT MISD. (UNDER $950) 06/27/2018 12:00:00 AM 13:40 LARCENY 3 09/06/2018 03:30:13 AM 1500 HARMON ST\nBerkeley, CA\n(37.848812, -122... 1500 HARMON ST Berkeley CA Wednesday Wednesday
12 18020810 ASSAULT/BATTERY FEL. 04/11/2018 12:00:00 AM 13:40 ASSAULT 3 09/06/2018 03:30:12 AM 2900 COLLEGE AVE\nBerkeley, CA\n(37.858356, -1... 2900 COLLEGE AVE Berkeley CA Wednesday Wednesday

Cleaning Block Location

The block location contains the GPS coordinates and I would like to use these to analyze the location of each request. Let's try to extract the GPS coordinates using regular expressions (we will cover regular expressions in future lectures):

In [30]:
calls['Block_Location'][0]
Out[30]:
'OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(37.856572, -122.275241)'
In [31]:
calls_lat_lon = (
    # Remove newlines
    calls['Block_Location'].str.replace("\n", "\t") 
    # Extract Lat and Lon using regular expression
    .str.extract(".*\((?P<Lat>\d*\.\d*)\, (?P<Lon>-?\d*.\d*)\)",expand=True)
)
calls_lat_lon.head(10)
Out[31]:
Lat Lon
0 37.856572 -122.275241
1 37.865511 -122.309967
2 37.868574 -122.270415
3 37.881142 -122.30191
4 37.870308 -122.26805
5 37.867176 -122.267802
6 37.891594 -122.264883
7 37.848812 -122.278043
8 37.879467 -122.261062
9 37.858433 -122.280183

Double check that all of the records have a latitude and longitude:

In [32]:
calls_lat_lon.isnull().sum()
Out[32]:
Lat    159
Lon    159
dtype: int64

The following block of code joins the extracted Latitude and Longitude fields with the calls data. Notice that we actually drop these fields before joining. This is to enable repeated invocation of this cell even after the join has been completed.

In [33]:
# Remove Lat and Lon if they already existed before (reproducible)
calls.drop(["Lat", "Lon"], axis=1, inplace=True, errors="ignore")
# Join in the the latitude and longitude data
calls = calls.merge(calls_lat_lon, left_index=True, right_index=True)
# calls[["Lat", "Lon"]] = calls_lat_lon
# calls.join(calls_lat_lon)
calls.head()
Out[33]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday 37.856572 -122.275241
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday 37.865511 -122.309967
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday 37.868574 -122.270415
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA Tuesday 37.881142 -122.30191
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA Saturday 37.870308 -122.26805

We can now look at a few of the records that were missing latitude and longitude entries:

In [34]:
calls[calls['Lat'].isnull()].head()
Out[34]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon
68 18090996 BURGLARY AUTO 06/21/2018 12:00:00 AM 01:00 BURGLARY - VEHICLE 4 09/06/2018 03:30:13 AM 400 OAKVALE AVE\nBerkeley, CA\n 400 OAKVALE AVE Berkeley CA Thursday NaN NaN
70 18033644 FRAUD/FORGERY 06/07/2018 12:00:00 AM 08:00 FRAUD 4 09/06/2018 03:30:13 AM 200 MENLO PL\nBerkeley, CA\n 200 MENLO PL Berkeley CA Thursday NaN NaN
79 18014355 ALCOHOL OFFENSE 03/10/2018 12:00:00 AM 22:47 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:08 AM UNIVERSITY AVENUE &amp; M L KING JR WAY\nBerke... UNIVERSITY AVENUE & M L KING JR WAY Berkeley CA Saturday NaN NaN
111 18038130 VANDALISM 07/06/2018 12:00:00 AM 17:00 VANDALISM 5 09/06/2018 03:30:09 AM 3000 BOISE ST\nBerkeley, CA\n 3000 BOISE ST Berkeley CA Friday NaN NaN
112 18041987 GUN/WEAPON 07/26/2018 12:00:00 AM 02:32 WEAPONS OFFENSE 4 09/06/2018 03:30:09 AM HEARST AVENUE &amp; SEVENTH ST\nBerkeley, CA\n HEARST AVENUE & SEVENTH ST Berkeley CA Thursday NaN NaN




Loading the stops.json Data

Python has relatively good support for JSON data since it closely matches the internal python object model. In the following cell we import the entire JSON datafile into a python dictionary.

In [35]:
import json

with open("data/stops.json", "rb") as f:
    stops_json = json.load(f)

The stops_json variable is now a dictionary encoding the data in the file:

In [36]:
type(stops_json)
Out[36]:
dict




We can now examine what keys are in the top level json object

We can list the keys to determine what data is stored in the object.

In [37]:
stops_json
Out[37]:
{'meta': {'view': {'id': '6e9j-pj9p',
   'name': 'Berkeley PD - Stop Data',
   'attribution': 'Berkeley Police Department',
   'averageRating': 0,
   'category': 'Public Safety',
   'createdAt': 1444171604,
   'description': 'This data was extracted from the Department’s Public Safety Server and covers the data beginning January 26, 2015.  On January 26, 2015 the department began collecting data pursuant to General Order B-4 (issued December 31, 2014).  Under that order, officers were required to provide certain data after making all vehicle detentions (including bicycles) and pedestrian detentions (up to five persons).  This data set lists stops by police in the categories of traffic, suspicious vehicle, pedestrian and bicycle stops.  Incident number, date and time, location and disposition codes are also listed in this data.\r\n\r\nAddress data has been changed from a specific address, where applicable, and listed as the block where the incident occurred.  Disposition codes were entered by officers who made the stop.  These codes included the person(s) race, gender, age (range), reason for the stop, enforcement action taken, and whether or not a search was conducted.\r\n\r\nThe officers of the Berkeley Police Department are prohibited from biased based policing, which is defined as any police-initiated action that relies on the race, ethnicity, or national origin rather than the behavior of an individual or information that leads the police to a particular individual who has been identified as being engaged in criminal activity.',
   'displayType': 'table',
   'downloadCount': 537,
   'hideFromCatalog': False,
   'hideFromDataJson': False,
   'indexUpdatedAt': 1526358841,
   'newBackend': False,
   'numberOfComments': 0,
   'oid': 28816359,
   'provenance': 'official',
   'publicationAppendEnabled': False,
   'publicationDate': 1526358819,
   'publicationGroup': 4669966,
   'publicationStage': 'published',
   'rowsUpdatedAt': 1526358616,
   'rowsUpdatedBy': 'cd35-9pq2',
   'tableId': 15200734,
   'totalTimesRated': 0,
   'viewCount': 4559,
   'viewLastModified': 1526358819,
   'viewType': 'tabular',
   'columns': [{'id': -1,
     'name': 'sid',
     'dataTypeName': 'meta_data',
     'fieldName': ':sid',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'id',
     'dataTypeName': 'meta_data',
     'fieldName': ':id',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'position',
     'dataTypeName': 'meta_data',
     'fieldName': ':position',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'created_at',
     'dataTypeName': 'meta_data',
     'fieldName': ':created_at',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'created_meta',
     'dataTypeName': 'meta_data',
     'fieldName': ':created_meta',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'updated_at',
     'dataTypeName': 'meta_data',
     'fieldName': ':updated_at',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'updated_meta',
     'dataTypeName': 'meta_data',
     'fieldName': ':updated_meta',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': -1,
     'name': 'meta',
     'dataTypeName': 'meta_data',
     'fieldName': ':meta',
     'position': 0,
     'renderTypeName': 'meta_data',
     'format': {},
     'flags': ['hidden']},
    {'id': 359528059,
     'name': 'Incident Number',
     'dataTypeName': 'text',
     'description': 'Number of incident created by Computer Aided Dispatch (CAD) program',
     'fieldName': 'incident_number',
     'position': 1,
     'renderTypeName': 'text',
     'tableColumnId': 31875525,
     'width': 189,
     'cachedContents': {'largest': '2018-00024831',
      'non_null': 42322,
      'null': 43,
      'top': [{'item': '2017-00057408', 'count': 20},
       {'item': '2018-00012370', 'count': 19},
       {'item': '2018-00015262', 'count': 18},
       {'item': '2017-00061077', 'count': 17},
       {'item': '2018-00018755', 'count': 16},
       {'item': '2018-00012162', 'count': 15},
       {'item': '2018-00023198', 'count': 14},
       {'item': '2017-00052274', 'count': 13},
       {'item': '2017-00057438', 'count': 12},
       {'item': '2018-00002389', 'count': 11}],
      'smallest': '2015-00004825'},
     'format': {'align': 'left'}},
    {'id': 359528060,
     'name': 'Call Date/Time',
     'dataTypeName': 'calendar_date',
     'description': 'Date and time of the incident/stop',
     'fieldName': 'call_date_time',
     'position': 2,
     'renderTypeName': 'calendar_date',
     'tableColumnId': 31875526,
     'width': 268,
     'cachedContents': {'largest': '2018-04-30T23:49:08',
      'non_null': 42365,
      'null': 0,
      'top': [{'item': '2017-09-02T23:19:36', 'count': 20},
       {'item': '2017-09-09T03:07:44', 'count': 19},
       {'item': '2017-09-22T21:21:36', 'count': 18},
       {'item': '2018-03-01T14:34:49', 'count': 17},
       {'item': '2018-03-15T09:07:21', 'count': 16},
       {'item': '2017-10-09T03:29:43', 'count': 15},
       {'item': '2018-03-31T23:51:33', 'count': 14},
       {'item': '2018-02-28T14:21:02', 'count': 13},
       {'item': '2018-04-23T02:42:17', 'count': 12},
       {'item': '2017-09-02T00:39:23', 'count': 11},
       {'item': '2017-09-22T22:42:45', 'count': 10},
       {'item': '2018-01-12T20:28:13', 'count': 9}],
      'smallest': '2015-01-26T00:10:00'},
     'format': {'view': 'date_time', 'align': 'left'}},
    {'id': 359528061,
     'name': 'Location',
     'dataTypeName': 'text',
     'description': 'General location of the incident/stop',
     'fieldName': 'location',
     'position': 3,
     'renderTypeName': 'text',
     'tableColumnId': 31875527,
     'width': 196,
     'cachedContents': {'largest': ' YALE AVE/RUGBY AVE',
      'non_null': 42365,
      'null': 0,
      'top': [{'item': ' SEVENTH ST /  POTTER ST', 'count': 20},
       {'item': ' UNIVERSITY AVE /  M L KING JR WAY', 'count': 19},
       {'item': ' UNIVERSITY AVE /  SAN PABLO AVE', 'count': 18},
       {'item': ' UNIVERSITY AVE /  SIXTH ST', 'count': 17},
       {'item': ' UNIVERSITY AVE /  W FRONTAGE RD', 'count': 16},
       {'item': '1900 BLOCK SHATTUCK AVE', 'count': 15},
       {'item': '2000 BLOCK UNIVERSITY AVE', 'count': 14},
       {'item': '2200 BLOCK SHATTUCK AVE', 'count': 13},
       {'item': '2500 BLOCK DURANT AVE', 'count': 12},
       {'item': '37.8609962420001000, -122.2561436990000000', 'count': 11},
       {'item': '37.8529197501924000, -122.2699641228860000', 'count': 10},
       {'item': '37.8693028530001000, -122.2722340210000000', 'count': 9},
       {'item': '37.8530825540103000, -122.2968377601460000', 'count': 8},
       {'item': '37.8532107497425000, -122.2971447295600000', 'count': 7},
       {'item': '37.8494135490001000, -122.2984722390000000', 'count': 6},
       {'item': '37.8668204207967000, -122.3037198079030000', 'count': 5},
       {'item': '37.8661036188751000, -122.3056881350310000', 'count': 4},
       {'item': '37.8703665180000000, -122.3184163430000000', 'count': 3},
       {'item': '3100 BLOCK ADELINE ST', 'count': 2},
       {'item': '3200 BLOCK ADELINE ST', 'count': 1}],
      'smallest': '<UNKNOWN>'},
     'format': {'align': 'left'}},
    {'id': 359528062,
     'name': 'Incident Type',
     'dataTypeName': 'text',
     'description': 'This is the occurred incident type created in the CAD program.  A code signifies a traffic stop (T), suspicious vehicle stop (1196), pedestrian stop (1194) and bicycle stop (1194B).',
     'fieldName': 'incident_type',
     'position': 4,
     'renderTypeName': 'text',
     'tableColumnId': 31875528,
     'width': 256,
     'cachedContents': {'largest': 'T',
      'non_null': 42365,
      'null': 0,
      'top': [{'item': 'T', 'count': 20},
       {'item': '1194', 'count': 19},
       {'item': '1196', 'count': 18},
       {'item': '1194B', 'count': 17}],
      'smallest': '1194'},
     'format': {'align': 'left'}},
    {'id': 359528063,
     'name': 'Dispositions',
     'dataTypeName': 'text',
     'description': 'Ordered in the following sequence:\n1st Character = Race, as follows:\nA (Asian) B (Black) H (Hispanic) O (Other) W (White)\n2nd Character = Gender, as follows:\nF (Female) M (Male)\n3rd Character = Age Range, as follows:\n1 (Less than 18) 2 (18-29) 3 (30-39), 4 (Greater than 40)\n4th Character = Reason, as follows:\nI (Investigation) T (Traffic) R (Reasonable Suspicion)\nK (Probation/Parole) W (Wanted)\n5th Character = Enforcement, as follows:\nA (Arrest) C (Citation) O (Other) W (Warning)\n6th Character = Car Search, as follows:\nS (Search) N (No Search)\n\nAdditional dispositions may also appear.  They are:\nP - Primary case report\nM - MDT narrative only\nAR - Arrest report only (no case report submitted)\nIN - Incident report\nFC - Field Card\nCO - Collision investigation report\nMH - Emergency Psychiatric Evaluation\nTOW - Impounded vehicle\n0 or 00000 – Officer made a stop of more than five persons',
     'fieldName': 'dispositions',
     'position': 5,
     'renderTypeName': 'text',
     'tableColumnId': 31875529,
     'width': 244,
     'cachedContents': {'largest': 'zz do not use Assist; ',
      'non_null': 42282,
      'null': 83,
      'top': [{'item': 'M', 'count': 20},
       {'item': 'WM4TCN; ', 'count': 19},
       {'item': 'M; ', 'count': 18},
       {'item': 'WM4TWN; ', 'count': 17},
       {'item': 'BM4TWN; ', 'count': 16},
       {'item': 'BM2TWN; ', 'count': 15},
       {'item': 'WF4TCN; ', 'count': 14},
       {'item': 'BM3TWN; ', 'count': 13},
       {'item': 'P; ', 'count': 12},
       {'item': 'HM4TCN; ', 'count': 11},
       {'item': 'BM4IWN; ', 'count': 10},
       {'item': 'HM2IWN; ', 'count': 9},
       {'item': 'WF3TCN; ', 'count': 8},
       {'item': 'WM3TWN; ', 'count': 7},
       {'item': 'AR; ', 'count': 6},
       {'item': 'BM3KWS; ', 'count': 5},
       {'item': 'BM4TWS; ', 'count': 4},
       {'item': 'HM4TWN; ', 'count': 3},
       {'item': 'HM2TWN; ', 'count': 2},
       {'item': 'BF4TCN; ', 'count': 1}],
      'smallest': '0'},
     'format': {'align': 'left'}},
    {'id': 359528065,
     'name': 'Location - Latitude',
     'dataTypeName': 'number',
     'description': 'General latitude of the call.  This data is only uploaded after January 2017',
     'fieldName': 'latitude',
     'position': 7,
     'rdfProperties': 'http://www.w3.org/2003/01/geo/wgs84_pos#lat',
     'renderTypeName': 'number',
     'tableColumnId': 48452939,
     'width': 100,
     'cachedContents': {'largest': '37.900832366',
      'non_null': 16534,
      'average': '37.86416420503672',
      'null': 25831,
      'top': [{'item': '37.8515148720001', 'count': 20},
       {'item': '37.8690965960001', 'count': 19},
       {'item': '37.8679950200001', 'count': 18},
       {'item': '37.871555254', 'count': 17},
       {'item': '37.8664441110001', 'count': 16},
       {'item': '37.8723895110001', 'count': 15},
       {'item': '37.8683338870001', 'count': 14},
       {'item': '37.8609962420001', 'count': 13},
       {'item': '37.8529197501924', 'count': 12},
       {'item': '37.8693028530001', 'count': 11},
       {'item': '37.8530825540103', 'count': 10},
       {'item': '37.8532107497425', 'count': 9},
       {'item': '37.8494135490001', 'count': 8},
       {'item': '37.8668204207967', 'count': 7},
       {'item': '37.8661036188751', 'count': 6},
       {'item': '37.870366518', 'count': 5},
       {'item': '37.85344422', 'count': 4},
       {'item': '37.8780774500971', 'count': 3},
       {'item': '37.8501914500001', 'count': 2},
       {'item': '37.8489640820001', 'count': 1}],
      'smallest': '37.837159597',
      'sum': '626046.0909660771632'},
     'format': {'precisionStyle': 'standard',
      'rdf': 'http://www.w3.org/2003/01/geo/wgs84_pos#lat',
      'noCommas': 'false',
      'align': 'right'}},
    {'id': 359528066,
     'name': 'Location - Longitude',
     'dataTypeName': 'number',
     'description': 'General longitude of the call.  This data is only uploaded after January 2017.',
     'fieldName': 'longitude',
     'position': 8,
     'rdfProperties': 'http://www.w3.org/2003/01/geo/wgs84_pos#long',
     'renderTypeName': 'number',
     'tableColumnId': 48452945,
     'width': 100,
     'cachedContents': {'largest': '-122.231086629',
      'non_null': 16534,
      'average': '-122.2803451576867',
      'null': 25831,
      'top': [{'item': '-122.291270407', 'count': 20},
       {'item': '-122.292119433', 'count': 19},
       {'item': '-122.297664755', 'count': 18},
       {'item': '-122.273001342', 'count': 17},
       {'item': '-122.305556569', 'count': 16},
       {'item': '-122.268727725', 'count': 15},
       {'item': '-122.267423313', 'count': 14},
       {'item': '-122.256143699', 'count': 13},
       {'item': '-122.269964122886', 'count': 12},
       {'item': '-122.272234021', 'count': 11},
       {'item': '-122.296837760146', 'count': 10},
       {'item': '-122.29714472956', 'count': 9},
       {'item': '-122.298472239', 'count': 8},
       {'item': '-122.303719807903', 'count': 7},
       {'item': '-122.305688135031', 'count': 6},
       {'item': '-122.318416343', 'count': 5},
       {'item': '-122.270383354', 'count': 4},
       {'item': '-122.308028163075', 'count': 3},
       {'item': '-122.294512996', 'count': 2},
       {'item': '-122.294814295', 'count': 1}],
      'smallest': '-122.319669759703',
      'sum': '-2021783.226837191997'},
     'format': {'precisionStyle': 'standard',
      'rdf': 'http://www.w3.org/2003/01/geo/wgs84_pos#long',
      'noCommas': 'false',
      'align': 'right'}}],
   'grants': [{'inherited': False, 'type': 'viewer', 'flags': ['public']}],
   'metadata': {'jsonQuery': {'order': [{'ascending': True,
       'columnFieldName': 'incident_number'}]},
    'rdfSubject': '0',
    'attachments': [{'filename': 'ODP Upload Narrative 01-14-16.pdf',
      'assetId': '44de7d3a-0b4c-485d-80fe-c17d3d134a9e',
      'blobId': '',
      'name': 'ODP Upload Narrative 01-14-16.pdf'}],
    'custom_fields': {'Required fields': {'One Page Narrative': 'This data was extracted from the Department’s Public Safety Server and covers the dates from January 26, 2015 through the most present upload of data.  On January 26, 2015 the department began collecting data pursuant to General Order B-4 (issued December 31, 2014).  Under that order, officers were required to provide certain data after making all vehicle detentions (including bicycles) and pedestrian detentions (up to five persons).  This data set lists stops by police in the categories of traffic, suspicious vehicle, pedestrian and bicycle stops.  Incident number, date and time, location and disposition codes are also listed in this data.  Address data has been changed from a specific address, where applicable, and listed as the block where the incident occurred.  Disposition codes were entered by officers who made the stop.  These codes included the person(s) race, gender, age (range), reason for the stop, enforcement action taken, and whether or not a search was conducted.  The officers of the Berkeley Police Department are prohibited from biased based policing, which is defined as any police-initiated action that relies on the race, ethnicity, or national origin rather than the behavior of an individual or information that leads the police to a particular individual who has been identified as being engaged in criminal activity.'}},
    'rowLabel': 'N/A',
    'availableDisplayTypes': ['table', 'fatrow', 'page'],
    'renderTypeConfig': {'visible': {'table': True}}},
   'owner': {'id': 'cd35-9pq2',
    'displayName': 'Police',
    'screenName': 'Police',
    'type': 'interactive'},
   'query': {'orderBys': [{'ascending': True,
      'expression': {'columnId': 359528059, 'type': 'column'}}]},
   'rights': ['read'],
   'tableAuthor': {'id': 'cd35-9pq2',
    'displayName': 'Police',
    'screenName': 'Police',
    'type': 'interactive'},
   'tags': ['police',
    'stop data',
    'traffic',
    'pedestrian',
    'vehicle',
    'bike',
    'race',
    'gender',
    'age',
    'reason',
    'enforcement',
    'search'],
   'flags': ['default', 'restorable', 'restorePossibleForType']}},
 'data': [[1,
   '29A1B912-A0A9-4431-ADC9-FB375809C32E',
   1,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004825',
   '2015-01-26T00:10:00',
   'SAN PABLO AVE / MARIN AVE',
   'T',
   'M',
   None,
   None],
  [2,
   '1644D161-1113-4C4F-BB2E-BF780E7AE73E',
   2,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004829',
   '2015-01-26T00:50:00',
   'SAN PABLO AVE / CHANNING WAY',
   'T',
   'M',
   None,
   None],
  [3,
   '5338ABAB-1C96-488D-B55F-6A47AC505872',
   3,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004831',
   '2015-01-26T01:03:00',
   'UNIVERSITY AVE / NINTH ST',
   'T',
   'M',
   None,
   None],
  [4,
   '21B6CBE4-9865-460F-97BC-6B26C6EF2FDB',
   4,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004848',
   '2015-01-26T07:16:00',
   '2000 BLOCK BERKELEY WAY',
   '1194',
   'BM4ICN',
   None,
   None],
  [5,
   '0D85FA92-80E9-48C2-B409-C3270251CD12',
   5,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004849',
   '2015-01-26T07:43:00',
   '1700 BLOCK SAN PABLO AVE',
   '1194',
   'BM4ICN',
   None,
   None],
  [6,
   'B472A15F-6FEE-457A-872F-4B4174D5CC41',
   6,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004865',
   '2015-01-26T09:46:00',
   'M L KING JR WAY / UNIVERSITY AVE',
   'T',
   'OF4TCN',
   None,
   None],
  [7,
   '0A9C0082-94FE-4B0B-9F2B-27F21C6BFD94',
   7,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004870',
   '2015-01-26T10:05:00',
   'M L KING JR WAY / UNIVERSITY AVE',
   'T',
   'OM4TCN',
   None,
   None],
  [8,
   '679142FB-85E1-4AC1-9CA0-C6393D329111',
   8,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004876',
   '2015-01-26T10:21:00',
   'UNIVERSITY AVE / M L KING JR WAY',
   'T',
   'OF2TCN',
   None,
   None],
  [9,
   '9CA07931-B049-4127-A7D4-5A3F4A7F6A3B',
   9,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004882',
   '2015-01-26T10:49:00',
   'HASTE ST / ELLSWORTH ST',
   'T',
   'OM2TCN',
   None,
   None],
  [10,
   'F2BCCCF9-D3AE-40EE-AE8F-2B52132EC677',
   10,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004887',
   '2015-01-26T11:12:00',
   'ADELINE ST / OREGON ST',
   'T',
   'OM2TCN',
   None,
   None],
  [11,
   '62351093-77AC-449E-A815-C792F95FDF5F',
   11,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004902',
   '2015-01-26T12:35:00',
   '1900 BLOCK SAN PABLO AVE',
   '1194',
   'BM2RCN',
   None,
   None],
  [12,
   'C48BCA26-3211-49F6-BBC4-A8145D9422C2',
   12,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004904',
   '2015-01-26T12:51:00',
   'TELEGRAPH AVE / DURANT AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [13,
   '73751CB5-4760-4935-AFF2-DFA33CECCFE9',
   13,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004905',
   '2015-01-26T12:53:00',
   'DELAWARE ST / ACTON ST',
   'T',
   'WM4TCN',
   None,
   None],
  [14,
   '2013E577-FC04-4FBE-B12B-00FFDBCB0CBD',
   14,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004909',
   '2015-01-26T13:04:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [15,
   '33667EE8-EE76-44B8-80EA-5D87077A8E48',
   15,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004911',
   '2015-01-26T13:16:00',
   'SHATTUCK AVE / UNIVERSITY AVE',
   '1194',
   'BM4RCN',
   None,
   None],
  [16,
   '272AF2E5-DEA7-4447-A6D7-17F58CA4798B',
   16,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004915',
   '2015-01-26T13:30:00',
   'M L KING JR WAY / CARLETON ST',
   'T',
   'WM3TCN',
   None,
   None],
  [17,
   '1B07B3F7-C0D4-4FA3-8278-D474CF32619B',
   17,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004916',
   '2015-01-26T13:30:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BF3RCN',
   None,
   None],
  [18,
   '07BE3E78-A509-4B3B-BF59-E3F65964C761',
   18,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004920',
   '2015-01-26T13:48:00',
   'DWIGHT WAY / SHATTUCK AVE',
   'T',
   'OM2TCN',
   None,
   None],
  [19,
   'E7AE3D12-2EDF-4D99-AE99-DE7FA3F6A3F2',
   19,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004921',
   '2015-01-26T13:54:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RWN',
   None,
   None],
  [20,
   '2D73461D-8184-4DC2-9AEB-915C846A7AEE',
   20,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004922',
   '2015-01-26T13:59:00',
   'DWIGHT WAY / ELLSWORTH ST',
   'T',
   'OF2TCN',
   None,
   None],
  [21,
   '4AA08B97-6BC3-4FE6-AEBA-FC47C4351425',
   21,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004925',
   '2015-01-26T14:03:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RWN',
   None,
   None],
  [22,
   '6BEA0F5D-0C7E-4796-A541-4491C71F8F5B',
   22,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004929',
   '2015-01-26T14:14:00',
   '2500 BLOCK DWIGHT WAY',
   '1194',
   'WM4RWN',
   None,
   None],
  [23,
   'CAFD2ED9-0CCD-4D30-8EE7-A52EDDC20A44',
   23,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004930',
   '2015-01-26T14:15:00',
   'ASHBY AVE / SHATTUCK AVE',
   'T',
   'OM4TCN',
   None,
   None],
  [24,
   'CD36C5A2-CBB0-4C37-BD4B-84E0FC092D5A',
   24,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004931',
   '2015-01-26T14:23:00',
   'DERBY ST / HILLEGASS AVE',
   '1194',
   'WM4RON',
   None,
   None],
  [25,
   'D7667919-8673-4F84-B98F-FE1E1A335257',
   25,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004932',
   '2015-01-26T14:30:00',
   '1400 BLOCK SHATTUCK AVE',
   '1194',
   'WM4ICN',
   None,
   None],
  [26,
   '25144D7C-2E18-42E4-983B-931C2F778BFC',
   26,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004935',
   '2015-01-26T14:35:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'OM3TCN',
   None,
   None],
  [27,
   'CAF8D8FE-AAD3-44AD-AF37-7F8EE71B148A',
   27,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004938',
   '2015-01-26T14:45:00',
   'SAN PABLO AVE / FOLGER AVE',
   '1196',
   'M',
   None,
   None],
  [28,
   'E73F2D8A-C9B8-4DC4-BDD5-B2F477B2152F',
   28,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004941',
   '2015-01-26T14:59:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WM2RCN',
   None,
   None],
  [29,
   '4FFC3E83-71F8-4B12-AE13-B2AEE69E8A95',
   29,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004945',
   '2015-01-26T15:12:00',
   '1800 BLOCK SAN PABLO AVE',
   '1194',
   'BM4RCN',
   None,
   None],
  [30,
   '5722132B-2A4B-42CF-8E3D-D74266C4747A',
   30,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004964',
   '2015-01-26T17:14:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WF2RWN',
   None,
   None],
  [31,
   'B73F2323-9DC3-4215-8801-0D70484D68A2',
   31,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004966',
   '2015-01-26T17:19:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'BF4RCN',
   None,
   None],
  [32,
   '4967407C-DF5A-455F-BD02-2E90ADB80486',
   32,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004968',
   '2015-01-26T17:22:00',
   'SHATTUCK AVE / KITTREDGE ST',
   'T',
   'WF4TCN',
   None,
   None],
  [33,
   '057AFA96-26F3-4600-A765-9D80CCB9DC3F',
   33,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004970',
   '2015-01-26T17:32:00',
   '1500 BLOCK SPRUCE ST',
   '1194',
   'M',
   None,
   None],
  [34,
   'B17A2645-A742-437A-A347-C7B1EC7B79DD',
   34,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004971',
   '2015-01-26T17:34:00',
   '2000 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [35,
   '2964195E-3D17-4EB9-A08B-014967316C92',
   35,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004974',
   '2015-01-26T17:49:00',
   'BANCROFT WAY / MILVIA ST',
   'T',
   'BM3TWN',
   None,
   None],
  [36,
   '48B524F7-71A3-4A4C-913B-4188B0DBE295',
   36,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004977',
   '2015-01-26T18:02:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WM2RWS',
   None,
   None],
  [37,
   '1592604E-0833-41DC-AF9A-634AA00C75E5',
   37,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004982',
   '2015-01-26T18:38:00',
   'SACRAMENTO ST / RUSSELL ST',
   '1194',
   'BM4RWS',
   None,
   None],
  [38,
   'AE4896DD-9093-4ABE-8A8F-0FB53EF88CB1',
   38,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004984',
   '2015-01-26T18:51:00',
   'CHANNING WAY / BOWDITCH ST',
   '1194',
   'AR',
   None,
   None],
  [39,
   'B3DB056B-1D28-4228-8A6B-29AC8EB4AFF1',
   39,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004993',
   '2015-01-26T19:20:00',
   'PRINCE ST / M L KING JR WAY',
   'T',
   'WM4TWN',
   None,
   None],
  [40,
   '4687516D-B490-4997-9808-61A1275DA11B',
   40,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00004996',
   '2015-01-26T19:38:00',
   'OREGON ST / M L KING JR WAY',
   '1194',
   'BM1RWS',
   None,
   None],
  [41,
   '5A515AFC-AC7E-4D36-BBFB-0227F879881C',
   41,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005010',
   '2015-01-26T21:29:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [42,
   '8F6DF9B0-C59B-4724-961F-315C22ACBD35',
   42,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005011',
   '2015-01-26T21:43:00',
   'M L KING JR WAY / ALLSTON WAY',
   'T',
   'AM2TWN',
   None,
   None],
  [43,
   'A64E7C07-CA56-4E33-81A9-8B59443EC433',
   43,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005014',
   '2015-01-26T22:17:00',
   'PIEDMONT AVE / DWIGHT WAY',
   'T',
   'M',
   None,
   None],
  [44,
   '4809A901-2A63-48A8-A08D-3C248D44AFE9',
   44,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005021',
   '2015-01-26T23:04:00',
   'SHATTUCK AVE / DURANT AVE',
   'T',
   'M',
   None,
   None],
  [45,
   'B9504CD7-EE8A-4789-9507-BEBA47BBEAAC',
   45,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005028',
   '2015-01-26T23:50:00',
   'SHATTUCK AVE / STUART ST',
   'T',
   'OM2TWN',
   None,
   None],
  [46,
   'CDAD7728-5622-4E39-9392-3485917424E5',
   46,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005029',
   '2015-01-26T23:57:00',
   'PARKER ST / DANA ST',
   'T',
   'BM2TWN',
   None,
   None],
  [47,
   '098299C9-DCE3-4D3B-AC25-18AB27BCC11B',
   47,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005030',
   '2015-01-27T00:24:00',
   'FULTON ST / DWIGHT WAY',
   '1194B',
   'WM3TWS',
   None,
   None],
  [48,
   'A184D37A-0168-40E6-A953-CA637BB6500F',
   48,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005032',
   '2015-01-27T00:42:00',
   'DWIGHT WAY / TELEGRAPH AVE',
   'T',
   'OM2TWN',
   None,
   None],
  [49,
   'C17EA549-8B63-4AC8-87B2-8F3980C0226B',
   49,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005035',
   '2015-01-27T01:03:00',
   'SAN PABLO AVE / STANFORD AVE',
   '1196',
   'BM2TWS',
   None,
   None],
  [50,
   '2FD40B8E-98AA-4EE2-984C-388909856554',
   50,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005040',
   '2015-01-27T02:01:00',
   'M L KING JR WAY / BLAKE ST',
   'T',
   'WM2RON',
   None,
   None],
  [51,
   '8C13C2B8-D792-4C04-AC37-7D5F7570C73A',
   51,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005053',
   '2015-01-27T07:38:00',
   'RUSSELL ST / COLLEGE AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [52,
   'C8220000-FF38-4CA2-931D-FC4905C8FB5F',
   52,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005054',
   '2015-01-27T07:45:00',
   'RUSSELL ST / COLLEGE AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [53,
   '53320355-35C7-40E3-BFA2-85AF91C07E71',
   53,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005056',
   '2015-01-27T07:59:00',
   'RUSSELL ST / COLLEGE AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [54,
   '7D520180-CC4C-4814-8F95-A6B219E12103',
   54,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005059',
   '2015-01-27T08:09:00',
   'COLLEGE AVE / WOOLSEY ST',
   'T',
   'OM2TCN',
   None,
   None],
  [55,
   '5D98421B-166D-410F-98EF-47313C672E7D',
   55,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005061',
   '2015-01-27T08:14:00',
   'ASHBY AVE / HILLEGASS AVE',
   'T',
   'OF4TCN',
   None,
   None],
  [56,
   '737FE45A-F3C4-42E8-86B7-F23414123AC3',
   56,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005064',
   '2015-01-27T08:19:00',
   'ASHBY AVE / COLLEGE AVE',
   'T',
   'WM3TCN',
   None,
   None],
  [57,
   '58CB5A6E-260D-4D47-8DEE-1AFFBA123205',
   57,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005066',
   '2015-01-27T08:23:00',
   'HILLEGASS AVE / DERBY ST',
   'T',
   'OM3TCN',
   None,
   None],
  [58,
   '9BEFB1AF-2E75-4186-8011-083E6AE4331D',
   58,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005067',
   '2015-01-27T08:29:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WF4TCN',
   None,
   None],
  [59,
   '03AD5AF0-A452-4F6D-A8B2-09A55A168121',
   59,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005068',
   '2015-01-27T08:34:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'OF4TCN',
   None,
   None],
  [60,
   '67F0BB88-501A-43AE-AE65-27111C4028CC',
   60,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005069',
   '2015-01-27T08:45:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'OM3TCN',
   None,
   None],
  [61,
   'D36F00F3-8C4E-4450-BFAF-DF393CF27E29',
   61,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005072',
   '2015-01-27T08:56:00',
   'PARKER ST / TELEGRAPH AVE',
   'T',
   'OM2TWN',
   None,
   None],
  [62,
   '0A5CCB43-D8A1-40CB-9543-162255FB3541',
   62,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005074',
   '2015-01-27T09:12:00',
   'SHATTUCK AVE / BLAKE ST',
   'T',
   'WF4TCN',
   None,
   None],
  [63,
   '2820083B-D5C9-4D44-ABF1-9D4BD2733A64',
   63,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005077',
   '2015-01-27T09:35:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'WF3TWN',
   None,
   None],
  [64,
   '200F6597-0F8F-480C-AE46-CA21593D32F4',
   64,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005092',
   '2015-01-27T11:10:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'WM4TCN',
   None,
   None],
  [65,
   'DDCB3A9E-0ABA-4781-87E7-A1EAEFF6A01D',
   65,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005104',
   '2015-01-27T12:38:00',
   'MILVIA ST / BANCROFT WAY',
   'T',
   'AF3TWN',
   None,
   None],
  [66,
   'A7F00E94-DE49-4E3C-A9C5-672E00C62E04',
   66,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005106',
   '2015-01-27T12:41:00',
   'ADELINE ST / HARMON ST',
   '1194',
   'BM4RAS',
   None,
   None],
  [67,
   '23AD5616-4617-4ECE-9666-EA1A46F19265',
   67,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005113',
   '2015-01-27T13:20:00',
   'MURRAY ST / NINTH ST',
   'T',
   'WF2TCN',
   None,
   None],
  [68,
   'E53B6883-9EF3-4C54-BEA4-D572C12557B6',
   68,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005117',
   '2015-01-27T13:33:00',
   '2300 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RCS',
   None,
   None],
  [69,
   '84E00CF6-C0D3-4915-8072-CE7B7D4C4823',
   69,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005124',
   '2015-01-27T13:52:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM3RAS',
   None,
   None],
  [70,
   '4E0E7CAF-BC87-4551-B233-3443C5F3DB06',
   70,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005129',
   '2015-01-27T14:24:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'OM4TCN',
   None,
   None],
  [71,
   'F6A7A703-FEE1-4215-A3EF-4604B8039B79',
   71,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005136',
   '2015-01-27T14:37:00',
   '800 BLOCK FOLGER AVE',
   'T',
   'AM4TCN',
   None,
   None],
  [72,
   'A22D7523-AAB7-4853-A000-129B82075D41',
   72,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005139',
   '2015-01-27T14:47:00',
   'SEVENTH ST / POTTER ST',
   'T',
   'OF4TCN',
   None,
   None],
  [73,
   '6E9178DD-4347-4633-B962-9DB6077FA65C',
   73,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005141',
   '2015-01-27T14:53:00',
   '1900 BLOCK SAN PABLO AVE',
   '1194',
   'HM4RCS, HM3RCS',
   None,
   None],
  [74,
   'E8657464-A12C-4595-A052-74F0974F59E0',
   74,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005143',
   '2015-01-27T15:00:00',
   'HEINZ AVE / NINTH ST',
   'T',
   'OF4TCN',
   None,
   None],
  [75,
   '0BFC9200-8C44-4EEA-A59C-B2D28AB9B496',
   75,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005147',
   '2015-01-27T15:11:00',
   '1200 BLOCK WARD ST',
   'T',
   'WM4TCN',
   None,
   None],
  [76,
   '02B9B8A9-11E5-4221-9E02-58E4DCAF0913',
   76,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005149',
   '2015-01-27T15:25:00',
   'OREGON ST / DOHR ST',
   'T',
   'WM4TCN',
   None,
   None],
  [77,
   'B85F859D-91F8-4487-A6BA-8FAC62853A53',
   77,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005154',
   '2015-01-27T15:59:00',
   '37.8727394650001~-122.279790956',
   '1194',
   'M',
   None,
   None],
  [78,
   '9C9F1A53-6586-49D0-ABCF-7B5D1793CC2D',
   78,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005163',
   '2015-01-27T16:48:00',
   'MCGEE AVE / DELAWARE ST',
   '1194',
   'M',
   None,
   None],
  [79,
   '4FCAE24B-78FD-4EFF-A611-2FE45D5E4D75',
   79,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005172',
   '2015-01-27T17:47:00',
   'MILVIA ST / VIRGINIA ST',
   'T',
   'AF3TWN',
   None,
   None],
  [80,
   '96E9715D-E787-413D-BAD5-E6AB6F96AB9F',
   80,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005178',
   '2015-01-27T18:00:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [81,
   '2A06CBF1-B003-4819-9CE3-DB39C7C816D8',
   81,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005180',
   '2015-01-27T18:11:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'BM3ROS, MH',
   None,
   None],
  [82,
   '9352FB16-0751-4BFF-98A7-51245FFED96D',
   82,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005181',
   '2015-01-27T18:23:00',
   '1400 BLOCK SHATTUCK AVE',
   '1194',
   'OM2ICN, WM2ICN',
   None,
   None],
  [83,
   'A7AE7258-EDF6-435C-A17A-16A1F055E231',
   83,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005189',
   '2015-01-27T18:51:00',
   '60TH ST / SAN PABLO AVE',
   '1196',
   'M',
   None,
   None],
  [84,
   '3BC961EE-DAE0-4B8D-BACF-1266DF43BABF',
   84,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005193',
   '2015-01-27T19:19:00',
   'BLAKE ST / MILVIA ST',
   'T',
   'BM3TWN',
   None,
   None],
  [85,
   'BC9B2E0A-71E5-4E86-A28F-9239BFCBB1E8',
   85,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005194',
   '2015-01-27T19:25:00',
   '2300 BLOCK TELEGRAPH AVE',
   '1194',
   'BM2IOS',
   None,
   None],
  [86,
   '704BD600-4132-426A-A8E7-AEA5755D5AE4',
   86,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005195',
   '2015-01-27T19:25:00',
   'SHATTUCK AVE / CENTER ST',
   'T',
   'OF2TWN',
   None,
   None],
  [87,
   '06B884F2-23AF-44F4-86A5-5DA5C5BF9F6C',
   87,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005197',
   '2015-01-27T19:27:00',
   'SACRAMENTO ST / RUSSELL ST',
   'T',
   'M',
   None,
   None],
  [88,
   '1709DC75-CC70-416B-A3D2-A04800A2E94A',
   88,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005199',
   '2015-01-27T19:40:00',
   'SAN PABLO AVE / ALLSTON WAY',
   '1194B',
   'M',
   None,
   None],
  [89,
   '9645DE9C-E2B5-43B1-B793-76CC43D1A5B9',
   89,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005206',
   '2015-01-27T20:21:00',
   'SACRAMENTO ST / TYLER ST',
   'T',
   'M',
   None,
   None],
  [90,
   '7B1FFC25-4E01-48EA-BAC4-BA5BB713AEE0',
   90,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005209',
   '2015-01-27T20:34:00',
   'SAN PABLO AVE / PARDEE ST',
   'T',
   'BM3TWN',
   None,
   None],
  [9963,
   '47A3B3BF-21BB-4AE4-8BF2-38AEDD3C3BB6',
   9963,
   1452769362,
   '932858',
   1452769362,
   '932858',
   None,
   '2015-00070869',
   '2015-12-04T22:59:00',
   '0 BLOCK BOLIVAR DR',
   '1196',
   'M',
   None,
   None],
  [91,
   '6EBB5DF9-5558-4050-A587-9E9D586C39B7',
   91,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005210',
   '2015-01-27T20:39:00',
   'SIXTH ST / UNIVERSITY AVE',
   '1194',
   'M',
   None,
   None],
  [92,
   '7B8B44F1-FFD1-4E88-82AC-C4BF327AC821',
   92,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005215',
   '2015-01-27T21:27:00',
   'ALLSTON WAY / M L KING JR WAY',
   '1194',
   'P',
   None,
   None],
  [93,
   '48EBC855-B303-4CC3-954A-B787AB608DD3',
   93,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005219',
   '2015-01-27T21:43:00',
   'CALIFORNIA ST / ALLSTON WAY',
   '1194',
   'BM2IOS',
   None,
   None],
  [94,
   '7D3B3A32-9731-4BA8-AA79-66C75A71D653',
   94,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005220',
   '2015-01-27T21:53:00',
   'BANCROFT WAY / DANA ST',
   'T',
   'BM2TWN',
   None,
   None],
  [95,
   '375AA6D7-50C7-4C08-8642-E7BAAFE2F2CE',
   95,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005223',
   '2015-01-27T22:06:00',
   'ASHBY AVE / HARPER ST',
   'T',
   'BM2TWN',
   None,
   None],
  [96,
   '691DB91B-661D-46D2-9548-5AB6928DC931',
   96,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005225',
   '2015-01-27T22:23:00',
   'CORNELL AVE / CAMELIA ST',
   '1196',
   'M',
   None,
   None],
  [97,
   'C9D0DA08-78E8-4800-A14B-914E59D6CBA2',
   97,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005227',
   '2015-01-27T22:42:00',
   'DURANT AVE / TELEGRAPH AVE',
   'T',
   'BF2TWN',
   None,
   None],
  [98,
   'FAA11C07-5840-427D-B07B-89862A0D9E72',
   98,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005229',
   '2015-01-27T23:13:00',
   'CENTER ST / M L KING JR WAY',
   '1194',
   'BM2RCS, M',
   None,
   None],
  [99,
   '3BC81F0A-9EA1-4006-9B56-EEBDFF049CB3',
   99,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005230',
   '2015-01-27T23:20:00',
   'CHANNING WAY / MILVIA ST',
   'T',
   'WM2TCN',
   None,
   None],
  [100,
   'F5B62660-8ECA-495D-A43C-AF979C6B807B',
   100,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005232',
   '2015-01-27T23:29:00',
   'DWIGHT WAY / TELEGRAPH AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [101,
   'E5392FAB-44DE-435B-B36E-000A161953F0',
   101,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005233',
   '2015-01-27T23:51:00',
   '1300 BLOCK CARRISON ST',
   '1194B',
   None,
   None,
   None],
  [102,
   'A5DA32C1-29B2-4B2F-B4E1-12F41C6D655C',
   102,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005234',
   '2015-01-27T23:53:00',
   'TELEGRAPH AVE / STUART ST',
   'T',
   'WM2TWN',
   None,
   None],
  [103,
   '1C839D2F-3DC0-45EE-B1B0-0AD48D30E363',
   103,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005236',
   '2015-01-27T23:56:00',
   'DURANT AVE / DANA ST',
   'T',
   'OM2TWS',
   None,
   None],
  [104,
   'D04E7A54-14C2-4C17-8112-FE5915BBB187',
   104,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005238',
   '2015-01-28T00:02:00',
   'ALLSTON WAY / SAN PABLO AVE',
   'T',
   'BF1TCN',
   None,
   None],
  [105,
   '73304225-F220-4DE0-A34F-6EEA34F47B93',
   105,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005239',
   '2015-01-28T00:08:00',
   'SAN PABLO AVE / BURNETT ST',
   'T',
   'BM4TWN',
   None,
   None],
  [106,
   '429C0150-3A33-46B1-9A89-490E584B3240',
   106,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005241',
   '2015-01-28T00:19:00',
   'DWIGHT WAY / TELEGRAPH AVE',
   'T',
   'WM3TCN',
   None,
   None],
  [107,
   '527BFB2E-9C38-48FB-B8CE-F233F35A58CA',
   107,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005242',
   '2015-01-28T00:28:00',
   'SHATTUCK AVE / CHANNING WAY',
   'T',
   'BM3TWN',
   None,
   None],
  [108,
   'C6ACBDFC-822C-4720-9FFA-56D19AFD234E',
   108,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005245',
   '2015-01-28T00:37:00',
   'SHATTUCK AVE / PARKER ST',
   '1194',
   'BM4RAS',
   None,
   None],
  [109,
   'C0AB952A-339B-4BBE-ABC1-262D4A754A04',
   109,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005246',
   '2015-01-28T00:41:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   '1194',
   'OM2TWN',
   None,
   None],
  [110,
   'D9B633B2-9DB5-4EEF-9867-563ED2CCDFE8',
   110,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005247',
   '2015-01-28T00:43:00',
   'KING ST / HARMON ST',
   'T',
   'BM3TWS',
   None,
   None],
  [111,
   'D8964574-0DB8-438A-84F3-1C1316C7AC40',
   111,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005248',
   '2015-01-28T00:53:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   '1194B',
   None,
   None,
   None],
  [112,
   '47D1991D-69FC-4986-8F8D-15D22B1FE8FB',
   112,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005249',
   '2015-01-28T01:02:00',
   '3200 BLOCK ADELINE ST',
   '1194',
   'M',
   None,
   None],
  [113,
   'FC33115B-CC04-43C2-A517-94696358D098',
   113,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005253',
   '2015-01-28T01:33:00',
   'SAN PABLO AVE / FOLGER AVE',
   '1194B',
   'BM4RWN',
   None,
   None],
  [114,
   '1FA99AE5-330A-4F6B-A3EE-D9354BAD2DC1',
   114,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005259',
   '2015-01-28T03:23:00',
   'SEVENTH ST / HEARST AVE',
   '1194',
   'BM3IWS',
   None,
   None],
  [115,
   '53AF84AA-4179-4287-9155-F15CD81EB165',
   115,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005261',
   '2015-01-28T03:52:00',
   'TELEGRAPH AVE / DURANT AVE',
   'T',
   'OM2TCN',
   None,
   None],
  [116,
   'D420D663-E05D-4C10-98BD-D3434B5798DA',
   116,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005267',
   '2015-01-28T07:25:00',
   'COLLEGE AVE / ASHBY AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [117,
   'E5C7D73A-64D3-4327-8645-7DB6DD73635B',
   117,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005268',
   '2015-01-28T07:42:00',
   'SACRAMENTO ST / RUSSELL ST',
   'T',
   'WM4TCN',
   None,
   None],
  [118,
   '0AB8391C-F7F4-4EE5-9564-CBF9A618AE34',
   118,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005270',
   '2015-01-28T07:48:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WM3TCN',
   None,
   None],
  [119,
   '672B6BEF-AF28-4E5C-A502-F7104E201C97',
   119,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005276',
   '2015-01-28T07:55:00',
   '2900 BLOCK COLLEGE AVE',
   '1194B',
   'WM2TCN',
   None,
   None],
  [120,
   '725FD506-7D56-430D-994B-4B02B835A860',
   120,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005277',
   '2015-01-28T08:02:00',
   '900 BLOCK ASHBY AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [121,
   'B2C76438-D4FB-4377-AB24-3BD81F2AACF5',
   121,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005282',
   '2015-01-28T08:13:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'HM3TCN',
   None,
   None],
  [122,
   'BE486CEF-7A0D-476F-87E6-A1BA9AD09A0A',
   122,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005286',
   '2015-01-28T08:29:00',
   'STUART ST / COLLEGE AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [123,
   'A0FB8569-8CE8-4D24-A941-4E202ECB4928',
   123,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005287',
   '2015-01-28T08:33:00',
   'SACRAMENTO ST / JULIA ST',
   'T',
   'WF4TCN',
   None,
   None],
  [124,
   '3BEBDB13-BA30-40DD-93EB-2D9791313117',
   124,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005288',
   '2015-01-28T08:45:00',
   'M L KING JR WAY / CENTER ST',
   'T',
   'OF3TWN',
   None,
   None],
  [125,
   'F7ED40FE-BC91-48DF-B1D3-8AA47E33C67D',
   125,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005289',
   '2015-01-28T08:46:00',
   'SACRAMENTO ST / RUSSELL ST',
   'T',
   'WF4TCN',
   None,
   None],
  [126,
   '04858E48-60D0-42C9-B428-586A52520AF5',
   126,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005292',
   '2015-01-28T08:58:00',
   'ASHBY AVE / SACRAMENTO ST',
   'T',
   'BF4TCN',
   None,
   None],
  [127,
   'C4BBC362-9785-4D43-8236-DF8D868B9033',
   127,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005297',
   '2015-01-28T09:17:00',
   'SACRAMENTO ST / RUSSELL ST',
   'T',
   'HF3TCN',
   None,
   None],
  [128,
   'A6E11235-DEA7-4F0E-B8B5-0DCEA8794B39',
   128,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005298',
   '2015-01-28T09:27:00',
   'SACRAMENTO ST / CHANNING WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [129,
   '20052567-1F7D-454F-9281-1A34F0B27628',
   129,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005300',
   '2015-01-28T09:42:00',
   'UNIVERSITY AVE / NINTH ST',
   'T',
   'WF4TCN',
   None,
   None],
  [130,
   'E8FFA851-82AC-401B-89A9-7216C1F74065',
   130,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005303',
   '2015-01-28T09:54:00',
   'PARKER ST / MILVIA ST',
   'T',
   'M',
   None,
   None],
  [131,
   '341D627C-4F54-4F05-8B27-9F607E0CFEC9',
   131,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005309',
   '2015-01-28T10:26:00',
   'DWIGHT WAY / FULTON ST',
   'T',
   'WM4TCN',
   None,
   None],
  [132,
   '4E4A97C4-DE19-44BA-A78A-8EC399F5D0AC',
   132,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005311',
   '2015-01-28T10:28:00',
   'BANCROFT WAY/BARROW LANE',
   '1194B',
   'HM2TCN',
   None,
   None],
  [133,
   '657857C0-7195-4900-B2BB-E3EBDA544A1C',
   133,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005316',
   '2015-01-28T10:43:00',
   'BANCROFT WAY / BARROWS LN',
   'T',
   'OM4TWN',
   None,
   None],
  [134,
   '3963866A-C56F-4CCC-8747-E020D9D78E8E',
   134,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005317',
   '2015-01-28T10:44:00',
   'BANCROFT WAY / DANA ST',
   '1194B',
   'WM2TCN',
   None,
   None],
  [135,
   '67C3C18B-B150-4BA7-98BF-93FBBCC8665C',
   135,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005320',
   '2015-01-28T10:54:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   '1194B',
   'WM2TCN',
   None,
   None],
  [136,
   '396553EF-C457-43A9-96AB-0CAF2E6A7B56',
   136,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005321',
   '2015-01-28T10:55:00',
   'BANCROFT WAY / BARROWS LN',
   '1194B',
   'OM2TCN',
   None,
   None],
  [137,
   '3E2B723A-DD9A-4D68-B099-E3963D5FD897',
   137,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005324',
   '2015-01-28T11:03:00',
   'BANCROFT WAY / ELLSWORTH ST',
   'T',
   'WM4TCN',
   None,
   None],
  [138,
   'ADB6A885-D387-4383-8310-3CF48B9B759B',
   138,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005326',
   '2015-01-28T11:04:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   '1194B',
   'WM2TCN',
   None,
   None],
  [139,
   'E8B0D160-C097-4380-9CEA-09ED3FD4274D',
   139,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005356',
   '2015-01-28T14:05:00',
   'BOWDITCH ST / DWIGHT WAY',
   '1194',
   'M',
   None,
   None],
  [140,
   'EAE00B47-AA14-45A1-8331-EA6F49DA9F19',
   140,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005384',
   '2015-01-28T16:28:00',
   'DWIGHT WAY / GRANT ST',
   'T',
   'HM4TWN',
   None,
   None],
  [141,
   '1C9AB719-4C15-4465-BB53-99E1FDA4057D',
   141,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005386',
   '2015-01-28T16:34:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   '1194',
   'BF1IWN',
   None,
   None],
  [142,
   '881FD2E9-1274-4850-AD09-AC9B19A48932',
   142,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005388',
   '2015-01-28T16:38:00',
   'M L KING JR WAY / DERBY ST',
   'T',
   'WF3TCN',
   None,
   None],
  [143,
   'F70C0AE9-C3A7-4872-80F1-B183AE4CEAE7',
   143,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005394',
   '2015-01-28T16:53:00',
   'DERBY ST / M L KING JR WAY',
   'T',
   'WF2TWN',
   None,
   None],
  [144,
   'FE988027-C12C-42C4-890B-23E6A36B43E0',
   144,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005396',
   '2015-01-28T16:57:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM4RWN',
   None,
   None],
  [145,
   '353158AB-D252-4072-B3AC-4469034A80E8',
   145,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005406',
   '2015-01-28T17:24:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'WM4RCN',
   None,
   None],
  [146,
   '71CB7239-C982-4697-9D5C-9FBE7EC3AA4E',
   146,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005408',
   '2015-01-28T17:38:00',
   '2500 BLOCK HILLEGASS AVE',
   '1194',
   'AR',
   None,
   None],
  [147,
   'F5B10CFB-3342-43BD-95C9-A17C32F4E1AB',
   147,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005419',
   '2015-01-28T18:04:00',
   'VINE ST / OXFORD ST',
   '1194',
   'BM2ICS',
   None,
   None],
  [148,
   'C7000F35-8662-4B6B-8C38-7F54950F84EB',
   148,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005420',
   '2015-01-28T18:07:00',
   'UNI/10',
   'T',
   'BM3ICN',
   None,
   None],
  [149,
   'DB8947E0-0E24-491B-8C66-06F6A615B3B4',
   149,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005432',
   '2015-01-28T19:12:00',
   'VINE ST / SHATTUCK AVE',
   '1194',
   'OM4IAS',
   None,
   None],
  [150,
   '09E3B08C-C60D-4CE4-9366-E3FCAA1FE6CB',
   150,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005440',
   '2015-01-28T20:04:00',
   'TELE/DER',
   'T',
   'M',
   None,
   None],
  [9964,
   '21802C6C-7265-4C60-8947-F8D7D9AFE210',
   9964,
   1452769362,
   '932858',
   1452769362,
   '932858',
   None,
   '2015-00065531',
   '2015-11-06T19:30:00',
   '100 BLOCK BERKELEY SQ',
   '1194',
   'MH, WM4RWN',
   None,
   None],
  [151,
   '56711E0E-C8E7-4351-860F-3AD6D7F5C88E',
   151,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005441',
   '2015-01-28T20:18:00',
   'VALLEY ST / ALLSTON WAY',
   '1196',
   'OM3WAN',
   None,
   None],
  [152,
   '38B7EE7D-463E-4943-86E1-77CBF3769B0F',
   152,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005452',
   '2015-01-28T21:35:00',
   'SAN PABLO AVE / DWIGHT WAY',
   'T',
   'OM4IWN',
   None,
   None],
  [153,
   'D2EB8D28-907C-47A6-A0B7-390E301909FA',
   153,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005454',
   '2015-01-28T21:43:00',
   'DWIGHT WAY / SACRAMENTO ST',
   'T',
   'M',
   None,
   None],
  [154,
   'FFBB3D7D-EFCA-4FFB-93E7-C6A179FF2955',
   154,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005457',
   '2015-01-28T22:05:00',
   'DANA ST / BANCROFT WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [155,
   '9A537303-CFBE-4DB0-8A44-4EE7A62FDC10',
   155,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005465',
   '2015-01-28T23:03:00',
   'SAN PABLO AVE / DELAWARE ST',
   'T',
   'HM2TCN',
   None,
   None],
  [156,
   '8A12F391-7AAF-4809-91E6-4945618D1D29',
   156,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005466',
   '2015-01-28T23:10:00',
   'ASHBY AVE / REGENT ST',
   'T',
   'BM2TWN',
   None,
   None],
  [157,
   '90619768-34AB-4307-8E07-9C94D589F892',
   157,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005473',
   '2015-01-28T23:29:00',
   '3000 BLOCK DOHR ST',
   '1194B',
   'WM4WWN',
   None,
   None],
  [158,
   '21601D4E-8AFF-4E8E-823D-47448AAB831D',
   158,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005475',
   '2015-01-28T23:35:00',
   'PRINCE ST / SACRAMENTO ST',
   'T',
   'BM3TWS',
   None,
   None],
  [159,
   '6199E37B-A543-4F12-B4F6-6837112B84B1',
   159,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005476',
   '2015-01-28T23:47:00',
   'EIGHTH ST / BANCROFT WAY',
   'T',
   'BF3TWN',
   None,
   None],
  [160,
   'F855BB01-20C0-45E7-A9C3-D635F8366DA9',
   160,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005482',
   '2015-01-29T00:45:00',
   'PRINCE ST / CALIFORNIA ST',
   '1194B',
   'P',
   None,
   None],
  [161,
   'FD199632-18D2-4AAA-B0E6-1FD9F5CDB876',
   161,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005491',
   '2015-01-29T02:05:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   'T',
   'HF1TCS',
   None,
   None],
  [162,
   '03AAB438-9481-4587-81F6-5733B24045BA',
   162,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005493',
   '2015-01-29T03:06:00',
   'AC/PRINCE',
   'T',
   'BM3TWN',
   None,
   None],
  [164,
   '85BBA5A9-1932-4919-940A-ABF80BF8E13C',
   164,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005544',
   '2015-01-29T12:13:00',
   'M L KING JR WAY / DWIGHT WAY',
   'T',
   'WF2TCN',
   None,
   None],
  [165,
   'AEF30874-024F-4963-BCEC-1A754695F9C1',
   165,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005551',
   '2015-01-29T12:36:00',
   '800 BLOCK OXFORD ST',
   '1194',
   'BM2RWN',
   None,
   None],
  [166,
   'D97CAE98-1DCE-41C7-BFCA-08D978AFCACC',
   166,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005593',
   '2015-01-29T16:01:00',
   'BLAKE ST / CALIFORNIA ST',
   'T',
   'WM3TCS',
   None,
   None],
  [167,
   'EC3BC543-1647-4D37-98F0-7A5D240B313D',
   167,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005594',
   '2015-01-29T16:03:00',
   'ALLSTON WAY / MCKINLEY AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [168,
   '97D8CDD5-AD2B-4CCD-B11F-EE9EDB8F9D0F',
   168,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005614',
   '2015-01-29T17:40:00',
   '1500 BLOCK UNIVERSITY AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [169,
   'E380D80E-4E08-4F11-A80E-F081AD69B13B',
   169,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005627',
   '2015-01-29T18:19:00',
   'THE CIRCLE / MARIN AVE',
   'T',
   'HF3IWN',
   None,
   None],
  [170,
   '955AB8C0-6BC8-4FAC-A144-11FB74BA943C',
   170,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005628',
   '2015-01-29T18:29:00',
   'CURTIS ST / UNIVERSITY AVE',
   'T',
   'IN',
   None,
   None],
  [171,
   'AC453C79-9D97-4C78-B295-B91392DF0E07',
   171,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005640',
   '2015-01-29T19:34:00',
   '1900 BLOCK SAN PABLO AVE',
   '1196',
   'BM4TWN',
   None,
   None],
  [172,
   'AA2C7A34-1B51-4B5A-B42F-53D66F353228',
   172,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005642',
   '2015-01-29T19:41:00',
   'PRINCE ST / SACRAMENTO ST',
   'T',
   'HF3TWN',
   None,
   None],
  [173,
   'D72F1118-3468-402C-A8F1-0904128A2921',
   173,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005643',
   '2015-01-29T19:43:00',
   'BELVEDERE AVE / ROSE ST',
   'T',
   'BF3TCN',
   None,
   None],
  [174,
   '2035A355-4BD3-47C6-98E2-20C17B8149F4',
   174,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005644',
   '2015-01-29T19:51:00',
   'SIXTH ST / DELAWARE ST',
   'T',
   'WM4TWN',
   None,
   None],
  [175,
   'C93A9849-90AB-49CC-9F19-8DCBACD300BA',
   175,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005645',
   '2015-01-29T19:53:00',
   'HARMON ST / BAKER ST',
   'T',
   'AR',
   None,
   None],
  [176,
   '508140C2-C4D5-42FD-95DF-79DA29233A0E',
   176,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005647',
   '2015-01-29T20:02:00',
   'ADELINE ST / OREGON ST',
   'T',
   'WM1TWN',
   None,
   None],
  [177,
   '20F0D53C-34C5-486B-9769-B83FA9C39E40',
   177,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005649',
   '2015-01-29T20:09:00',
   'SAN PABLO AVE / VIRGINIA ST',
   'T',
   'AM3TCN',
   None,
   None],
  [178,
   '5DCFC965-061F-41B8-A2A8-3C7FDBE5094C',
   178,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005652',
   '2015-01-29T20:22:00',
   'ALCATRAZ AVE / ADELINE ST',
   'T',
   'BM2TWN',
   None,
   None],
  [179,
   '81B63DD5-BB34-4E96-9F4E-B889AB723547',
   179,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005653',
   '2015-01-29T20:23:00',
   'PARKER ST / REGENT ST',
   'T',
   'WF2TWN',
   None,
   None],
  [180,
   '5F66016F-0053-48D2-AAC7-3677AB558853',
   180,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005654',
   '2015-01-29T20:34:00',
   'SEVENTH ST / DWIGHT WAY',
   'T',
   'HM4TWN',
   None,
   None],
  [1301,
   'A487727F-9B6A-4965-A2F2-24E4E4A719B9',
   1301,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00011495',
   '2015-02-25T11:55:00',
   'SAN P/UNIV',
   'T',
   'AM2TCN',
   None,
   None],
  [1243,
   '8CCA3310-0AF6-4EE9-AD7B-58ABD24099EC',
   1243,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00011279',
   '2015-02-24T10:05:00',
   'UN/6',
   'T',
   'BM4TCN',
   None,
   None],
  [181,
   '33A9B4B2-27DF-451A-89BA-E4D23865F8F3',
   181,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005656',
   '2015-01-29T20:42:00',
   'SIXTH ST / HEARST AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [182,
   '37ECEFCB-DB7E-47AD-8FEB-0A3EB1E8541E',
   182,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005660',
   '2015-01-29T20:49:00',
   'SECOND ST / HEARST AVE',
   '1194B',
   'BM3TWS',
   None,
   None],
  [183,
   'F370A4AD-2380-4638-BA00-8BDD9D2782A0',
   183,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005665',
   '2015-01-29T21:05:00',
   '900 BLOCK PAGE ST',
   '1194B',
   'BM4TWN',
   None,
   None],
  [184,
   '8F1CB54D-6941-490F-B994-8073EDC8D2AC',
   184,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005673',
   '2015-01-29T22:12:00',
   'TELEGRAPH AVE / DWIGHT WAY',
   '1194',
   'M',
   None,
   None],
  [185,
   '08715C0E-5B87-4EF1-9EE1-54EF8E246A5C',
   185,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005675',
   '2015-01-29T22:16:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   '0',
   None,
   None],
  [186,
   '52AD9342-F601-4513-935E-5B26423298B4',
   186,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005676',
   '2015-01-29T22:18:00',
   'UNIVERSITY AVE / GRANT ST',
   'T',
   'P',
   None,
   None],
  [187,
   '7EBA4D72-BF49-47F8-B100-9154833B8E3F',
   187,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005679',
   '2015-01-29T22:25:00',
   'TOUCHLESS CAR WASH',
   '1194',
   'M',
   None,
   None],
  [188,
   'FBDCDC6B-1FE7-4A2C-8D35-22FFB8BCEAC5',
   188,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005681',
   '2015-01-29T22:34:00',
   '37.8529197501924~-122.269964122886',
   '1194',
   'BM3RAS',
   None,
   None],
  [189,
   '35BEDEF0-D543-448E-8D58-8A6DCB85A1A4',
   189,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005683',
   '2015-01-29T22:47:00',
   'PIEDMONT AVE/DURANT AVE',
   'T',
   'BM3TWN',
   None,
   None],
  [190,
   '55EEE6A9-1C04-404A-BF01-1B12AED22E05',
   190,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005684',
   '2015-01-29T22:53:00',
   'UNIVERSITY AVE / EIGHTH ST',
   'T',
   'WF3TCN',
   None,
   None],
  [191,
   'BE9DE35E-9B5D-4618-96DC-B393A60B2179',
   191,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005687',
   '2015-01-29T23:08:00',
   'SACRAMENTO ST / ADDISON ST',
   'T',
   'AM3TWN',
   None,
   None],
  [192,
   '3FFBDFF5-43EF-418D-94C4-20DECD417D17',
   192,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005689',
   '2015-01-29T23:14:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'WF4TWN',
   None,
   None],
  [193,
   '75572CE1-1AB3-43B9-9466-3191CA6E5645',
   193,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005690',
   '2015-01-29T23:16:00',
   'UNIVERSITY AVE / SACRAMENTO ST',
   'T',
   'BF3TCN',
   None,
   None],
  [194,
   '522391FF-92D8-4308-A0EA-36E4C22BB6DE',
   194,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005691',
   '2015-01-29T23:17:00',
   '1500 BLOCK RUSSELL ST',
   '1196',
   'BM2TWN',
   None,
   None],
  [195,
   '4B7F2BD3-195D-4817-8E19-3EA939D6486A',
   195,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005692',
   '2015-01-29T23:20:00',
   'CHANNING WAY / DANA ST',
   'T',
   'OF2TCN',
   None,
   None],
  [196,
   '4858170B-8A81-4270-99B2-76AC459A7D0A',
   196,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005693',
   '2015-01-29T23:24:00',
   'ADDISON ST / BONAR ST',
   'T',
   'WF2TCS',
   None,
   None],
  [197,
   'BC84DFFD-5594-4072-B293-EDAE080FA2F4',
   197,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005694',
   '2015-01-29T23:25:00',
   'RUSSELL ST / MCGEE AVE',
   '1196',
   'M',
   None,
   None],
  [198,
   'C5FD15C6-60A7-4042-AC59-EE26BB4C4496',
   198,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005695',
   '2015-01-29T23:31:00',
   'DWIGHT WAY / DANA ST',
   'T',
   'OM2TWN',
   None,
   None],
  [199,
   'F6693D9A-681B-45ED-B7BE-AD6877D64302',
   199,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005698',
   '2015-01-29T23:39:00',
   'BANCROFT WAY / BOWDITCH ST',
   'T',
   'HM2TWS',
   None,
   None],
  [200,
   'C44203BA-863F-484A-8D22-E1474ABDCF22',
   200,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005704',
   '2015-01-30T00:17:00',
   'FIFTH ST / BANCROFT WAY',
   'T',
   'AF2TWN',
   None,
   None],
  [201,
   'BC658470-E8AF-44C4-B000-74A2156D4E3F',
   201,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005715',
   '2015-01-30T01:43:00',
   'DWIGHT WAY / ELLSWORTH ST',
   'T',
   'HM4TWN',
   None,
   None],
  [202,
   '378D916E-FCB5-4DBD-9429-50C18F6F5CF7',
   202,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005716',
   '2015-01-30T01:54:00',
   'SHATTUCK AVE / DWIGHT WAY',
   'T',
   'M',
   None,
   None],
  [203,
   '4397ACC0-B18B-459E-8761-860E773BEDE7',
   203,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005730',
   '2015-01-30T04:40:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   'T',
   'M',
   None,
   None],
  [204,
   '2EE8F4E1-113D-4066-9B2A-12E476D69123',
   204,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005735',
   '2015-01-30T06:55:00',
   'BOLIVAR DR / BANCROFT WAY',
   'T',
   'HM4IWN',
   None,
   None],
  [205,
   'C73BE2CC-474F-407E-8DD6-4944BE16D1AC',
   205,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005774',
   '2015-01-30T11:56:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'WF4RCN, WF3RCN',
   None,
   None],
  [206,
   '412F3D14-7B0A-4137-8AB7-E7F900637693',
   206,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005777',
   '2015-01-30T11:59:00',
   'MILVIA ST / BANCROFT WAY',
   'T',
   'BM2TWS',
   None,
   None],
  [207,
   '6364460C-4E25-4A5C-8196-2DFD42889FE0',
   207,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005781',
   '2015-01-30T12:15:00',
   '2000 BLOCK CHANNING WAY',
   '1194',
   'WM4RCN',
   None,
   None],
  [208,
   '231E26F2-D705-4912-8B82-C36DEC4DD8A1',
   208,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005784',
   '2015-01-30T12:35:00',
   'BANCROFT WAY / SHATTUCK AVE',
   '1194',
   'WM4RCN',
   None,
   None],
  [209,
   'DCBE8685-FA31-4276-98EB-63CE9F5BC1B3',
   209,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005786',
   '2015-01-30T12:44:00',
   'KITTREDGE ST / SHATTUCK AVE',
   '1194',
   'WF4RCN',
   None,
   None],
  [210,
   'CEE3818B-3A31-4A76-88B4-E79148BDA45D',
   210,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005790',
   '2015-01-30T12:59:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM3RCN',
   None,
   None],
  [37627,
   '475737C7-3702-4C05-A187-4E3758B7D6C1',
   37627,
   1526358611,
   '932858',
   1526358611,
   '932858',
   None,
   None,
   '2017-08-07T07:18:25',
   ' SAC/ASHB',
   'T',
   'M; ',
   None,
   None],
  [211,
   'D8970088-5050-4C1D-B737-3ADBC9AC1698',
   211,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005793',
   '2015-01-30T13:08:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BF2RCN',
   None,
   None],
  [212,
   '7019E267-93D6-4D51-A180-8025E3985B2E',
   212,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005795',
   '2015-01-30T13:16:00',
   '100 BLOCK SHATTUCK SQ',
   '1194',
   'M',
   None,
   None],
  [213,
   'E44ABB62-2755-4CA6-9FEE-51F1A51CCF2E',
   213,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005810',
   '2015-01-30T14:53:00',
   'M L KING JR WAY / PRINCE ST',
   '1196',
   'M',
   None,
   None],
  [214,
   'F6434470-366D-4DA2-BE2E-4FCC98C8D879',
   214,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005811',
   '2015-01-30T15:01:00',
   'PIEDMONT AVE / CHANNING WAY',
   'T',
   'WM2TCN',
   None,
   None],
  [215,
   'A8767CD6-7EEA-45B7-A9BF-F4A1A926AB6C',
   215,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005817',
   '2015-01-30T15:27:00',
   'ALCATRAZ AVE / CALIFORNIA ST',
   '1194B',
   None,
   None,
   None],
  [216,
   '62D88538-A4BD-41D7-95D7-765450887C64',
   216,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005826',
   '2015-01-30T15:44:00',
   'ALLSTON WAY / MILVIA ST',
   '1194',
   'M',
   None,
   None],
  [217,
   '9A240B2A-3AA5-4E88-9BF8-62FECFFA5745',
   217,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005846',
   '2015-01-30T16:57:00',
   'DELAWARE ST / ACTON ST',
   'T',
   'OM4TCN',
   None,
   None],
  [218,
   '58E43A41-EF3C-4AE2-BFD8-5D85C3DCA15D',
   218,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005861',
   '2015-01-30T17:41:00',
   'CARLETON ST / SHATTUCK AVE',
   '1196',
   'M',
   None,
   None],
  [219,
   'D94B72EE-A257-4B5D-9DF6-127AAC7290AF',
   219,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005865',
   '2015-01-30T18:12:00',
   'SAN PABLO AVE / SIXTY-THIRD ST',
   'T',
   'M',
   None,
   None],
  [220,
   '058E6017-DF2C-490E-8A4E-ABB2CBC69F54',
   220,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005875',
   '2015-01-30T18:47:00',
   'UNIVERSITY AVE / CURTIS ST',
   'T',
   'WM3TWN',
   None,
   None],
  [221,
   '22C5747C-D168-4914-A318-3446BD4B7D45',
   221,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005877',
   '2015-01-30T18:48:00',
   'WARD ST / M L KING JR WAY',
   'T',
   'WF4TWN',
   None,
   None],
  [222,
   '48A2EB8D-D9D3-454F-BB33-99AC81F646C6',
   222,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005878',
   '2015-01-30T18:49:00',
   'SHATTUCK AVE / CARLETON ST',
   'T',
   'BM2TWN',
   None,
   None],
  [223,
   '0A557400-2014-4DEF-B23C-06E0E542CA8B',
   223,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005879',
   '2015-01-30T18:53:00',
   '2300 BLOCK BANCROFT WAY',
   'T',
   'AM1RWS',
   None,
   None],
  [224,
   '1F0E11A1-705C-43C2-968F-2D091B2B6E1D',
   224,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005881',
   '2015-01-30T18:58:00',
   'SHATTUCK AVE / CARLETON ST',
   'T',
   'WF2TWN',
   None,
   None],
  [225,
   '3FA9E829-6D78-4454-B875-AC21AD86CE0D',
   225,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005882',
   '2015-01-30T19:12:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BM2RCN',
   None,
   None],
  [226,
   '1D296DE4-BC94-4B7F-B1AE-D5ED00CFA9A4',
   226,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005886',
   '2015-01-30T19:25:00',
   'M L KING JR WAY / PRINCE ST',
   'T',
   'BM2TWN',
   None,
   None],
  [227,
   '45493FA0-DF8B-48C8-9580-376E53A7BFF6',
   227,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005887',
   '2015-01-30T19:29:00',
   'CHANNING WAY / TENTH ST',
   '1196',
   'M',
   None,
   None],
  [228,
   'CF489A5E-DA2B-4B63-AAA2-AEEC9B578F24',
   228,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005888',
   '2015-01-30T19:36:00',
   'ASHBY AVE / DEAKIN ST',
   'T',
   'BF4TWN',
   None,
   None],
  [229,
   '9C610CF3-8B27-4CEB-8E0A-02795036853D',
   229,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005891',
   '2015-01-30T19:48:00',
   'SHATT HASTE',
   '1194',
   'M',
   None,
   None],
  [230,
   '5B5C9CBC-87E0-41AE-A782-8E6032A3FF40',
   230,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005895',
   '2015-01-30T19:57:00',
   'SACRAMENTO ST / STUART ST',
   '1194',
   'M',
   None,
   None],
  [231,
   '48628C22-2B6B-453B-9310-87B628132AA5',
   231,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005897',
   '2015-01-30T20:07:00',
   'CHANNING WAY / M L KING JR WAY',
   'T',
   'HF2TCN',
   None,
   None],
  [232,
   '9C770A7F-0AFB-4F86-B1D7-1B6AECD30375',
   232,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005898',
   '2015-01-30T20:10:00',
   '1500 BLOCK HARMON ST',
   '1194',
   'M',
   None,
   None],
  [233,
   'BD01333F-DD29-4284-BABD-E76D2B71B665',
   233,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005899',
   '2015-01-30T20:11:00',
   'SECOND ST / UNIVERSITY AVE',
   '1194',
   '0',
   None,
   None],
  [234,
   '35FF3E2E-FBFB-47F2-8EC5-ED638614D237',
   234,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005900',
   '2015-01-30T20:15:00',
   '2700 BLOCK DURANT AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [235,
   '20AE3CD8-BA48-496A-8A50-01653E5E4F84',
   235,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005902',
   '2015-01-30T20:23:00',
   'DERBY ST / SACRAMENTO ST',
   'T',
   'BM2TWN',
   None,
   None],
  [236,
   '9264B9A6-0906-4615-9F25-DCA326ABEE8D',
   236,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005903',
   '2015-01-30T20:25:00',
   'CALIFORNIA ST / JULIA ST',
   'T',
   'WF4TWN',
   None,
   None],
  [237,
   '96B0EA37-19A3-4E83-8298-40FE837BF1F7',
   237,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005904',
   '2015-01-30T20:28:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'BM4TWN, M',
   None,
   None],
  [238,
   '2DA97C43-B893-4D33-8073-7B0A681D802B',
   238,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005905',
   '2015-01-30T20:32:00',
   'COLLEGE AVE / DWIGHT WAY',
   'T',
   'WM4TWN',
   None,
   None],
  [239,
   '56393ED8-5D58-46D3-9F9E-966F073DF49F',
   239,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005908',
   '2015-01-30T20:37:00',
   'ALCATRAZ AVE / SACRAMENTO ST',
   'T',
   'BM2TWN',
   None,
   None],
  [240,
   '9C603FF8-9FBA-43D3-880B-190C71000672',
   240,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005911',
   '2015-01-30T20:48:00',
   '65/TELE 6nsn339',
   'T',
   'WM2TWN',
   None,
   None],
  [9965,
   'A65F5054-BC64-4735-8B26-042AEE5D5BBF',
   9965,
   1452769362,
   '932858',
   1452769362,
   '932858',
   None,
   '2015-00076014',
   '2015-12-31T21:49:00',
   '100 BLOCK SEAWALL DR',
   '1196',
   'M',
   None,
   None],
  [241,
   '19F6BDF6-BA18-4A7B-BDF1-AAD764D7267D',
   241,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005912',
   '2015-01-30T20:52:00',
   'COLLEGE AVE / DERBY ST',
   'T',
   'WM3TWN',
   None,
   None],
  [242,
   'EDCB919C-B62B-4E9F-8F5A-BB4E074EFD2A',
   242,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005914',
   '2015-01-30T21:08:00',
   'CARLETON ST / MCGEE AVE',
   'T',
   'BM3TWS',
   None,
   None],
  [243,
   '9B975C5E-C231-4C57-B24A-F3A2A29600C5',
   243,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005915',
   '2015-01-30T21:09:00',
   '2900 BLOCK DOHR ST',
   '1194',
   'M',
   None,
   None],
  [244,
   '326D3F41-60F0-46B3-87B2-3BA5F84293D6',
   244,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005917',
   '2015-01-30T21:13:00',
   '2100 BLOCK HASTE ST',
   'T',
   'AM3TWN',
   None,
   None],
  [245,
   '6FFC1B2F-754B-4544-9047-E6E6DAD39694',
   245,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005918',
   '2015-01-30T21:20:00',
   'VIRGINIA ST / FIFTH ST',
   'T',
   'HM4TWN',
   None,
   None],
  [246,
   'F502563D-EE60-4F9C-ACB2-45B2451B86B6',
   246,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005919',
   '2015-01-30T21:22:00',
   'SHATTUCK AVE / BLAKE ST',
   'T',
   'TOW, BM4TCN',
   None,
   None],
  [247,
   'EEA15CDD-D1C2-4628-BFFD-BE051295C483',
   247,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005921',
   '2015-01-30T21:24:00',
   'UNIVERSITY AVE / M L KING JR WAY',
   'T',
   'BM3TWN',
   None,
   None],
  [248,
   '4A665FCE-7DF8-4E91-BA94-AC9F9643B29F',
   248,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005923',
   '2015-01-30T21:27:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'BF1TCN',
   None,
   None],
  [249,
   '2053B769-0CB5-4EFB-B344-6A0000BD73A4',
   249,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005925',
   '2015-01-30T21:33:00',
   'SHATTUCK AVE / FAIRVIEW ST',
   'T',
   'BM4TWN',
   None,
   None],
  [250,
   'A93ECD45-9D3B-4F82-B974-43C6B743F708',
   250,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005926',
   '2015-01-30T21:38:00',
   'SAN PABLO AVE / ALLSTON WAY',
   'T',
   'BM3TWN',
   None,
   None],
  [251,
   'BA52602E-2916-4938-943D-FE495C5443B0',
   251,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005927',
   '2015-01-30T21:43:00',
   'UNIVERSITY AVE / GRANT ST',
   'T',
   'AM2TWN',
   None,
   None],
  [252,
   '1EAE65A5-DE63-4206-A11E-EA6B4EBFB449',
   252,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005928',
   '2015-01-30T21:44:00',
   '2100 BLOCK SAN PABLO AVE',
   '1194B',
   'BM4TWN',
   None,
   None],
  [253,
   'F93D17FD-574A-4BDE-9F36-F398C79E1805',
   253,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005930',
   '2015-01-30T21:50:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'BM3TCS',
   None,
   None],
  [254,
   '6E108998-4285-4E74-AF4C-2C0E32DAC180',
   254,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005931',
   '2015-01-30T21:53:00',
   'HARMON ST / ELLIS ST',
   'T',
   'BF2TWN',
   None,
   None],
  [255,
   '52946EAA-29C1-4EF4-AD67-82E205590B15',
   255,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005933',
   '2015-01-30T22:00:00',
   'UNIVERSITY AVE / NINTH ST',
   'T',
   'HM2TWS',
   None,
   None],
  [256,
   '893254A9-8362-4FC3-B03C-17F732649F0D',
   256,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005935',
   '2015-01-30T22:05:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [257,
   '5DFDE6C4-F86D-4CC5-9F3B-488BA2A076D4',
   257,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005937',
   '2015-01-30T22:12:00',
   'KING ST / PRINCE ST',
   'T',
   'BM3TWN',
   None,
   None],
  [258,
   '5C8E5C3A-490B-4900-9979-DDC5D180AF3D',
   258,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005939',
   '2015-01-30T22:20:00',
   'SHATTUCK AVE / BANCROFT WAY',
   'T',
   'OM2TCN',
   None,
   None],
  [259,
   '86117F25-1ED9-4349-8D1C-B6397AA9A220',
   259,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005940',
   '2015-01-30T22:21:00',
   'EIGHTH ST / VIRGINIA ST',
   'T',
   'OM3TWN',
   None,
   None],
  [260,
   'B799CFB4-FCFA-4AA5-832D-05932913946F',
   260,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005941',
   '2015-01-30T22:25:00',
   'DWIGHT WAY / PIEDMONT AVE',
   'T',
   'M',
   None,
   None],
  [261,
   '0AF7D8A7-E34B-4E3D-A15F-2A02C22BCF51',
   261,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005942',
   '2015-01-30T22:33:00',
   'CURTIS ST / GILMAN ST',
   'T',
   'BM3TWN, M',
   None,
   None],
  [262,
   'C2B676F4-B763-4C0D-A0FC-C440FA6ADC2B',
   262,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005949',
   '2015-01-30T22:56:00',
   'HAROLD WAY / ALLSTON WAY',
   'T',
   'HM2TWN',
   None,
   None],
  [263,
   '283AC23E-0E3D-4F08-B590-8C62BD4FFA2E',
   263,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005951',
   '2015-01-30T23:03:00',
   'SP/DELA',
   'T',
   'BF2TWN',
   None,
   None],
  [264,
   '6D3F4A48-12D0-41A4-8FDB-2F3E68037114',
   264,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005953',
   '2015-01-30T23:10:00',
   'SAN PABLO AVE / ASHBY AVE',
   'T',
   'BF4TWN',
   None,
   None],
  [265,
   '5D24409A-D857-49BB-8BB0-B46D4EEC1E24',
   265,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005956',
   '2015-01-30T23:13:00',
   'PIEDMONT/DURANT',
   '1194',
   'AF2RWN',
   None,
   None],
  [266,
   '54EA5E2F-9649-447B-87DB-69402507E9D0',
   266,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005957',
   '2015-01-30T23:17:00',
   'BYRON ST / BANCROFT WAY',
   '1196',
   'BM2ICS',
   None,
   None],
  [267,
   'D3D92F46-4A0D-4DD5-B2F5-FF37A716C8A8',
   267,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005959',
   '2015-01-30T23:22:00',
   'SAN PABLO AVE / ALLSTON WAY',
   'T',
   'BF3TCN',
   None,
   None],
  [268,
   '2614DB5B-0B17-40AB-A4C1-6B44A9294AFA',
   268,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005962',
   '2015-01-30T23:26:00',
   'OREGON ST / GRANT ST',
   'T',
   'BM2TWN',
   None,
   None],
  [269,
   '1FCA8539-E37C-492E-9E80-D9E8914757F0',
   269,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005964',
   '2015-01-30T23:38:00',
   'SEVENTH ST / ASHBY AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [270,
   '72F9219B-2AB5-40FD-AB0F-954509937A6E',
   270,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005967',
   '2015-01-30T23:49:00',
   'TELEGRAPH AVE / CHANNING WAY',
   'T',
   'AF1TWN',
   None,
   None],
  [1607,
   'C03EB707-B69A-4813-8801-0AD62761C1E7',
   1607,
   1444146411,
   '932858',
   1444146411,
   '932858',
   None,
   '2015-00013225',
   '2015-03-05T13:18:00',
   'PIED/FORE',
   'T',
   'OF4TCN',
   None,
   None],
  [271,
   '57223A9E-B905-4AB3-913F-D8E9EDD5A28A',
   271,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005968',
   '2015-01-30T23:50:00',
   'EMERSON ST / ADELINE ST',
   'T',
   'OM3TWN',
   None,
   None],
  [272,
   'DFAF62E7-7360-4690-A6CB-8BDA2BBBC5F6',
   272,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005971',
   '2015-01-31T00:03:00',
   'PRINCE ST / KING ST',
   'T',
   'BM2TWS',
   None,
   None],
  [273,
   'ADD3F71E-4D4C-4AF8-8DA6-2E3E9164DE65',
   273,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005972',
   '2015-01-31T00:07:00',
   'UNI/EO SAC',
   'T',
   'WF3TWN',
   None,
   None],
  [274,
   '6D147C71-C441-497B-AC2B-E6395F19E06E',
   274,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005976',
   '2015-01-31T00:22:00',
   'SAN PABLO AVE / ALLSTON WAY',
   'T',
   'OM2TCN',
   None,
   None],
  [275,
   '9CAB3512-3BA5-4EDC-A6B8-E3909077F78D',
   275,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005982',
   '2015-01-31T00:46:00',
   'SAC/DEL',
   'T',
   'AF4TWN',
   None,
   None],
  [276,
   '4045F3AB-3854-4642-AC9A-BBDA594C9BE9',
   276,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005984',
   '2015-01-31T00:56:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   'T',
   'OM2TWN',
   None,
   None],
  [277,
   '9A116756-DB30-4DF4-ADEF-927F74DCA910',
   277,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00005992',
   '2015-01-31T01:24:00',
   'SHAT/STUA',
   'T',
   'WF2TWN',
   None,
   None],
  [279,
   'E850B5BD-5D6F-433C-A391-0D588ED0D6E9',
   279,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006011',
   '2015-01-31T03:39:00',
   'FIFTH ST / ADDISON ST',
   'T',
   'WM3TWN',
   None,
   None],
  [280,
   'FCAB33E5-448A-405B-92B5-BBE82F0C3E94',
   280,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006012',
   '2015-01-31T04:09:00',
   'SIXTH ST / VIRGINIA ST',
   '1194',
   'M',
   None,
   None],
  [281,
   '3DCB66F7-4D48-42B6-8770-336573649AA8',
   281,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006023',
   '2015-01-31T09:27:00',
   'M L KING JR WAY / 61ST ST',
   'T',
   'BM2TWN',
   None,
   None],
  [282,
   'FF116E5E-48B2-464A-A8CF-D2E461F1D582',
   282,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006052',
   '2015-01-31T12:35:00',
   'DWIGHT WAY / SAN PABLO AVE',
   'T',
   'WM3TCN',
   None,
   None],
  [283,
   '41B61BCC-5891-4536-AF27-24AAF3A87C18',
   283,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006057',
   '2015-01-31T13:05:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [284,
   '7BAE6D5E-9BCF-4591-BBD2-24068F5E48F7',
   284,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006090',
   '2015-01-31T15:49:00',
   '2500 BLOCK SAN PABLO AVE',
   '1194',
   'WM3WAS',
   None,
   None],
  [285,
   '886BA95A-DE6A-4497-89FB-B2EBF14D9F79',
   285,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006117',
   '2015-01-31T18:01:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WF3RCN',
   None,
   None],
  [286,
   '9372E7D0-AFEA-4DA2-9FA5-E92DA2CD8630',
   286,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006121',
   '2015-01-31T18:11:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RCS',
   None,
   None],
  [287,
   'F50B2CDE-210D-4669-9610-45A61721F411',
   287,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006132',
   '2015-01-31T18:39:00',
   '37.8693028530001~-122.272234021',
   '1194',
   'BM4RWN, BM4RCN',
   None,
   None],
  [288,
   '76F108D4-D406-41E5-BA29-D93829FCADB6',
   288,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006139',
   '2015-01-31T19:06:00',
   'SEVENTH ST / ALLSTON WAY',
   'T',
   'WM4TWN',
   None,
   None],
  [289,
   '997AEDB0-88E9-40EB-ABFA-C7C33306C60D',
   289,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006146',
   '2015-01-31T19:58:00',
   'ADELINE ST / WARD ST',
   'T',
   'AF1IAS',
   None,
   None],
  [290,
   'AF0E226E-8F78-46BD-ACB1-5F0EEA8AA796',
   290,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006149',
   '2015-01-31T20:12:00',
   'TELEGRAPH AVE / OREGON ST',
   'T',
   'BM4TWN',
   None,
   None],
  [291,
   '006DCD58-1282-4CFA-A8D5-483013B6E554',
   291,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006150',
   '2015-01-31T20:14:00',
   'DWIGHT WAY / DANA ST',
   'T',
   'WM3TWN',
   None,
   None],
  [292,
   '0706E5A4-CE80-451D-AFC3-041070891626',
   292,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006151',
   '2015-01-31T20:22:00',
   '1700 BLOCK SAN PABLO AVE',
   '1194',
   'BM4RWN',
   None,
   None],
  [293,
   'C98208E1-D1BB-4089-B0EC-96A1AAF3A025',
   293,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006159',
   '2015-01-31T21:05:00',
   'ADELINE ST / ALCATRAZ AVE',
   'T',
   'OM2TCN',
   None,
   None],
  [294,
   '604A85ED-16FB-43F4-84C5-3138506F6A78',
   294,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006160',
   '2015-01-31T21:09:00',
   'SAC/CARL',
   'T',
   'OM3TWN',
   None,
   None],
  [295,
   'A4883865-71AB-42A3-80CE-3A1D2B315B52',
   295,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006167',
   '2015-01-31T21:44:00',
   'SACRAMENTO ST / OREGON ST',
   'T',
   'WM4TWN',
   None,
   None],
  [296,
   '3F9C1AD1-151E-40D8-B8EB-476702E98FB0',
   296,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006169',
   '2015-01-31T21:50:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'P',
   None,
   None],
  [297,
   'E2182879-5072-4E49-B95A-4F733F6616E5',
   297,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006170',
   '2015-01-31T21:53:00',
   'EIGHTH ST / CEDAR ST',
   'T',
   'M',
   None,
   None],
  [298,
   '6995E2C0-3ECA-4153-BD8F-D8B7E80CF479',
   298,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006176',
   '2015-01-31T22:19:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'M',
   None,
   None],
  [299,
   'D261510E-59D3-41EB-AC90-A845F6604728',
   299,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006177',
   '2015-01-31T22:20:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'BM3IWN',
   None,
   None],
  [300,
   '543E2BD2-C72B-498E-AA4A-B9C3DEC20DCE',
   300,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006179',
   '2015-01-31T22:29:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'M',
   None,
   None],
  [301,
   '3AEC7A30-7922-4267-9DAB-65EB174760A2',
   301,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006180',
   '2015-01-31T22:33:00',
   'BYRON ST / ADDISON ST',
   'T',
   'M',
   None,
   None],
  [302,
   'DF0995A8-58E0-4E42-84D6-B99268C5CFB1',
   302,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006182',
   '2015-01-31T22:43:00',
   'NINTH ST / HEARST AVE',
   'T',
   'M',
   None,
   None],
  [303,
   'FAD1C4ED-9F65-4B3F-8D51-5C09B24F1BF3',
   303,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006184',
   '2015-01-31T22:47:00',
   'DURANT AVE / TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [304,
   '35F6090E-B094-4EA9-AB45-C07A537ADC6E',
   304,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006185',
   '2015-01-31T22:55:00',
   'M L KING JR WAY / DWIGHT WAY',
   'T',
   'WM2TWN',
   None,
   None],
  [305,
   'C730783F-CBA9-40DD-BA7C-39B08E8C8E74',
   305,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006191',
   '2015-01-31T23:28:00',
   'CURTIS ST / UNIVERSITY AVE',
   'T',
   'AM2TWN',
   None,
   None],
  [306,
   '9D76B2BD-D354-41A7-8E73-8317E893C94D',
   306,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006192',
   '2015-01-31T23:40:00',
   'PARKER ST / BENVENUE AVE',
   '1194',
   'OM2RCN, M',
   None,
   None],
  [307,
   'A93FFE81-8FE7-421C-A70D-8964FD695A87',
   307,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006193',
   '2015-01-31T23:49:00',
   'CHANNING WAY / TELEGRAPH AVE',
   'T',
   'HM2TWN',
   None,
   None],
  [308,
   '97CF4E9B-C94D-475D-8C8D-4E898C90E778',
   308,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006196',
   '2015-02-01T00:02:00',
   'COLLEGE AVE / CHANNING WAY',
   'T',
   'WF2TWN',
   None,
   None],
  [309,
   'D80FAC7D-0AD4-47D2-910E-554EC3ED40CF',
   309,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006197',
   '2015-02-01T00:04:00',
   'TENTH ST / PARKER ST',
   '1196',
   'M',
   None,
   None],
  [310,
   '3AE42D24-BDBB-4473-9928-B68AB966D7FA',
   310,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006198',
   '2015-02-01T00:04:00',
   'SACRAMENTO ST / WOOLSEY ST',
   'T',
   'WF3TWN',
   None,
   None],
  [311,
   '14E5809C-506E-45D4-81A4-F6CA402F5E9D',
   311,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006199',
   '2015-02-01T00:14:00',
   'WOOLSEY ST / M L KING JR WAY',
   'T',
   'TOW, AR, P',
   None,
   None],
  [312,
   'CF6370A9-A69B-4B28-AF35-46D64F8F2A7B',
   312,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006201',
   '2015-02-01T00:19:00',
   'CHANNING WAY / COLLEGE AVE',
   'T',
   'HM2TWN',
   None,
   None],
  [313,
   'CAE0B9E4-4583-4367-A6FB-F6C5DE48A15C',
   313,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006202',
   '2015-02-01T00:19:00',
   '2500 BLOCK CHANNING WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [314,
   'BEDAFC23-20F7-4A04-B157-F97C96B0C290',
   314,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006205',
   '2015-02-01T00:38:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'M',
   None,
   None],
  [315,
   'B3072B26-4F49-4F96-AE63-73E026285E96',
   315,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006206',
   '2015-02-01T00:40:00',
   'UNIVERSITY AVE / CHESTNUT ST',
   'T',
   'AF2TCN',
   None,
   None],
  [316,
   'E86C5945-0191-4C4F-B7B9-B8342227CDC8',
   316,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006207',
   '2015-02-01T00:42:00',
   'TELEGRAPH AVE / DERBY ST',
   '1194B',
   'WM3IWS',
   None,
   None],
  [317,
   '1C56CC29-309E-44F3-B45F-F01D0028D2C8',
   317,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006209',
   '2015-02-01T00:54:00',
   'DWIGHT WAY / BONAR ST',
   'T',
   'M',
   None,
   None],
  [318,
   'FF0DAAEB-182F-4DED-BC87-32918CE83AAC',
   318,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006211',
   '2015-02-01T00:58:00',
   'BOWDITCH ST / DURANT AVE',
   'T',
   'AM2TWN',
   None,
   None],
  [319,
   '020FAF04-2A9C-4130-926C-63766053A059',
   319,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006213',
   '2015-02-01T01:05:00',
   'HARPER ST / WOOLSEY ST',
   'T',
   'WM3TWS',
   None,
   None],
  [320,
   'D4854FF0-C2EE-44EE-887E-B4A4AABD962C',
   320,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006217',
   '2015-02-01T01:19:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'P',
   None,
   None],
  [321,
   'CDC1CA9B-4AED-46BC-83B2-9A60EFCBFF2C',
   321,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006222',
   '2015-02-01T01:33:00',
   'TELEGRAPH AVE / STUART ST',
   '1194B',
   'BM2TWN',
   None,
   None],
  [322,
   '456F4FB0-BCAC-47AE-80BC-AA75F46FC189',
   322,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006224',
   '2015-02-01T01:40:00',
   'CHANNING WAY / COLLEGE AVE',
   'T',
   'BM2TCN',
   None,
   None],
  [323,
   '0CD60F5E-27CE-4B65-AA83-FA1AE8962F03',
   323,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006225',
   '2015-02-01T01:48:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'MH',
   None,
   None],
  [324,
   'BD2EE8F2-B96C-4B9F-88D3-400CE0F98211',
   324,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006226',
   '2015-02-01T01:55:00',
   'NINTH ST / CARLETON ST',
   '1196',
   'M',
   None,
   None],
  [325,
   '29F8E126-1AE3-4B65-A664-AB43A12921BD',
   325,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006233',
   '2015-02-01T02:31:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'WM3IWS',
   None,
   None],
  [326,
   '5E75297C-7EB3-4AC4-8025-B8D0B4B33DE3',
   326,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006235',
   '2015-02-01T02:44:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'WM2IWS',
   None,
   None],
  [327,
   '2DCFA0DF-4126-478C-B88C-750688E1AD5C',
   327,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006238',
   '2015-02-01T02:50:00',
   '80 BLOCK BOLIVAR DR',
   '1196',
   'AM3RWN',
   None,
   None],
  [328,
   '4331986C-BBC7-45FF-9BA5-B77034FC799C',
   328,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006243',
   '2015-02-01T04:30:00',
   'SHATTUCK AVE / HASTE ST',
   '1194',
   'WF3TWN',
   None,
   None],
  [329,
   'F10CF835-072B-4071-B728-53125131D8FF',
   329,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006249',
   '2015-02-01T05:13:00',
   '1800 BLOCK FOURTH ST',
   '1194',
   'AM3IWN',
   None,
   None],
  [330,
   '512BF046-236D-4389-8484-53B0D56437A0',
   330,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006276',
   '2015-02-01T11:40:00',
   'ADELINE ST / OREGON ST',
   'T',
   'WF2TCN',
   None,
   None],
  [331,
   '0D6DAD98-4126-4C25-99BE-C5A54F702303',
   331,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006281',
   '2015-02-01T12:05:00',
   'SHATTUCK AVE / DURANT AVE',
   '1194',
   'BM4RWS',
   None,
   None],
  [332,
   '1BFE9781-0C5D-4B47-8074-F46E68768ECF',
   332,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006283',
   '2015-02-01T12:30:00',
   'SHATUCKAVE/DURANT AVE',
   '1194',
   'BM4RWN',
   None,
   None],
  [333,
   '1283E2B9-392D-4C96-8996-E9C44907C94C',
   333,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006304',
   '2015-02-01T15:03:00',
   '37.865677884~-122.257266565',
   '1194',
   'WM2RWN',
   None,
   None],
  [334,
   '25A618E5-82F1-414E-AB79-0CC9B420D845',
   334,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006306',
   '2015-02-01T15:13:00',
   'SACRAMENTO ST / WARD ST',
   'T',
   'WF4TCN',
   None,
   None],
  [335,
   '683802DA-5C70-40F2-A788-6246C101CEEC',
   335,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006311',
   '2015-02-01T15:49:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WF3RWN',
   None,
   None],
  [336,
   'BA87295D-D2F8-43D6-AED9-B47564BD4EC7',
   336,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006316',
   '2015-02-01T16:06:00',
   'SHATTUCK AVE / HASTE ST',
   '1194',
   'WM3RWN',
   None,
   None],
  [337,
   '90B47753-E5CF-448B-B5FD-7D0870864218',
   337,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006319',
   '2015-02-01T16:19:00',
   '37.8693028530001~-122.272234021',
   '1194',
   'WM4RCN',
   None,
   None],
  [338,
   'F8D9EC2D-EB7F-4668-8530-E9579C90E036',
   338,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006329',
   '2015-02-01T18:28:00',
   'SIXTY-SEVENTH ST / SAN PABLO AVE',
   'T',
   'HM4TWN',
   None,
   None],
  [339,
   'C050333B-1D43-4536-B8BD-053353B64E94',
   339,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006330',
   '2015-02-01T18:29:00',
   'ALLSTON WAY / MCGEE AVE',
   'T',
   'WM2TAS',
   None,
   None],
  [340,
   '18852B6E-C040-4A38-B1B2-72FD6833455E',
   340,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006334',
   '2015-02-01T18:53:00',
   '2300 BLOCK TELEGRAPH AVE',
   '1194',
   'WM3RWN, WF3RCN',
   None,
   None],
  [341,
   '10E0CD6A-1711-429B-AAFC-384BC79727DE',
   341,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006337',
   '2015-02-01T19:07:00',
   'TELEGRAPH AVE / 61ST ST',
   'T',
   'OM3TWN',
   None,
   None],
  [342,
   'FC275089-D184-4E7F-8540-0507D31C90F8',
   342,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006341',
   '2015-02-01T19:13:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'BM4RCN',
   None,
   None],
  [343,
   'F69813DD-DAAB-4EA4-8A3A-B3819048E902',
   343,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006346',
   '2015-02-01T19:20:00',
   '61ST ST / SAN PABLO AVE',
   'T',
   'BM4TAS',
   None,
   None],
  [344,
   '16AF10E6-954E-4D81-8684-B479F0C03CC5',
   344,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006347',
   '2015-02-01T19:33:00',
   '2500 BLOCK TELEGRAPH AVE',
   '1194',
   'WF2RCN, WM2RCN, WM4RCS, WM4RAS, HM2RAS',
   None,
   None],
  [345,
   'FCBF5AB1-3456-488E-801C-28051B51FFF4',
   345,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006348',
   '2015-02-01T19:33:00',
   'BANCROFT WAY / DANA ST',
   'T',
   'WF2TWN',
   None,
   None],
  [346,
   '79C4ED01-99A0-4782-996C-D3E07E23930C',
   346,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006366',
   '2015-02-01T21:15:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'OM2TWN',
   None,
   None],
  [347,
   '4C421DDC-991A-4227-ABDB-EB083E8298C3',
   347,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006367',
   '2015-02-01T21:33:00',
   'SECOND ST / JONES ST',
   '1194',
   '0',
   None,
   None],
  [348,
   '4667A282-6430-4A42-A322-9F9E02AB30B4',
   348,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006379',
   '2015-02-01T22:48:00',
   'GRANT ST / UNIVERSITY AVE',
   'T',
   'AM3TWN',
   None,
   None],
  [349,
   '51CD5E3A-6C26-45E5-9C1F-08C432680A53',
   349,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006380',
   '2015-02-01T22:56:00',
   'TENTH ST / UNIVERSITY AVE',
   'T',
   'M',
   None,
   None],
  [350,
   '0C895FD6-1A45-430C-B632-67857F205743',
   350,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006381',
   '2015-02-01T22:59:00',
   'SHATTUCK AVE / CARLETON ST',
   '1196',
   'WM4TWN',
   None,
   None],
  [351,
   '5A3278EE-92CA-4110-8E4D-D2BAC8E1250F',
   351,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006385',
   '2015-02-01T23:32:00',
   'CHANNING WAY / MILVIA ST',
   '1194B',
   'BM1TWN',
   None,
   None],
  [352,
   '8A4610E2-17FD-47BC-939A-60554BA1EE1D',
   352,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006389',
   '2015-02-02T00:06:00',
   'UNIVERSITY AVE / CHESTNUT ST',
   '1196',
   'M',
   None,
   None],
  [353,
   'B26F0E99-B5F1-4850-AB78-E586B10C8970',
   353,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006391',
   '2015-02-02T00:09:00',
   'SACRAMENTO ST / TYLER ST',
   'T',
   'BM2TWN',
   None,
   None],
  [354,
   '76623706-967F-44AE-900F-D994209FF1D4',
   354,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006393',
   '2015-02-02T00:14:00',
   '1200 BLOCK EVELYN AVE',
   '1194B',
   'BM2IWS',
   None,
   None],
  [355,
   '438E314D-97EB-4F06-AF20-6DA701B222DC',
   355,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006395',
   '2015-02-02T00:26:00',
   'CARLETON ST / MCGEE AVE',
   '1194',
   'BF4RON',
   None,
   None],
  [356,
   '585C969F-0B66-41BE-A376-70A94CAA3A21',
   356,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006396',
   '2015-02-02T00:31:00',
   'CURTIS ST / ADDISON ST',
   'T',
   'IN',
   None,
   None],
  [357,
   'EC098DA6-46C5-4808-B829-20B8B5B6FDB5',
   357,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006398',
   '2015-02-02T01:08:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'M',
   None,
   None],
  [358,
   '1F9658FC-DE1E-4369-A2D1-627FEA59DB29',
   358,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006399',
   '2015-02-02T01:10:00',
   'TELEGRAPH AVE / PARKER ST',
   '1194',
   'M',
   None,
   None],
  [359,
   '2751BFAA-0DA7-4564-B517-AFA67137DFAB',
   359,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006401',
   '2015-02-02T01:38:00',
   'CURTIS ST / UNIVERSITY AVE',
   '1194',
   'M',
   None,
   None],
  [360,
   '8A623189-61E4-4EDA-B170-E622B4289F06',
   360,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006403',
   '2015-02-02T02:22:00',
   '800 BLOCK UNIVERSITY AVE',
   'T',
   'HM3KWS',
   None,
   None],
  [361,
   '649C43F7-3FF5-49B2-9569-917F1331F23A',
   361,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006410',
   '2015-02-02T04:40:00',
   'SACRAMENTO ST / UNIVERSITY AVE',
   '1194',
   'M',
   None,
   None],
  [362,
   '0231AD74-C1C2-466A-BE51-0EE47AB1B16D',
   362,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006413',
   '2015-02-02T06:01:00',
   'M L KING JR WAY / PARKER ST',
   'T',
   'BF3TCN',
   None,
   None],
  [363,
   'BB520795-B085-481C-8466-10065A32A67C',
   363,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006414',
   '2015-02-02T06:50:00',
   '2100 BLOCK OXFORD ST',
   '1194',
   'BM4RWN',
   None,
   None],
  [364,
   '2DBCB1CE-1FAA-43F0-94D1-824296342FB4',
   364,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006416',
   '2015-02-02T07:07:00',
   'DWIGHT WAY / HILLEGASS AVE',
   '1194',
   '000000, IN',
   None,
   None],
  [365,
   'C13E722D-D581-4E87-B3EA-2251481AAEE7',
   365,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006425',
   '2015-02-02T08:26:00',
   'ASHBY AVE / SAN PABLO AVE',
   '1194',
   'WM3ICN',
   None,
   None],
  [366,
   '8FC5774A-6F84-4118-9DBB-762833D0522E',
   366,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006447',
   '2015-02-02T10:22:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'BM2TCN',
   None,
   None],
  [367,
   'BC3399BD-712A-4735-9071-865CDDAA3369',
   367,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006449',
   '2015-02-02T10:33:00',
   'SEVENTH ST / ASHBY AVE',
   'T',
   'BM2TCN',
   None,
   None],
  [368,
   '74E862B1-6C9B-4603-B495-7D98DB28D21C',
   368,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006450',
   '2015-02-02T10:37:00',
   'UNIVERSITY AVE / SEVENTH ST',
   'T',
   'OM2TCN',
   None,
   None],
  [369,
   '0E297C6C-3F82-4E60-B071-2CBD5E8A68CE',
   369,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006454',
   '2015-02-02T10:49:00',
   '37.8680172840001~-122.303776422',
   'T',
   'WF1TWS',
   None,
   None],
  [370,
   '0C09DA2F-59AC-41FD-A36B-D7DFFE5C88F4',
   370,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006457',
   '2015-02-02T11:00:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'AF2RON',
   None,
   None],
  [371,
   'B5CD22E8-86D2-4AAA-800C-41AFFB43EE0C',
   371,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006458',
   '2015-02-02T11:12:00',
   'SHATTUCK AVE / ALLSTON WAY',
   '1194',
   'M',
   None,
   None],
  [372,
   '17A4AE0B-F1FF-4121-A4AD-C3959D306C16',
   372,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006459',
   '2015-02-02T11:16:00',
   'UNIVERSITY AVE / W FRONTAGE RD',
   'T',
   'WF3WWN',
   None,
   None],
  [373,
   '8BCDC326-B755-41F7-B66F-022E58C5B91D',
   373,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006464',
   '2015-02-02T11:30:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [374,
   '3A7F718E-33EF-4707-A06D-7F383F257408',
   374,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006468',
   '2015-02-02T11:36:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'AF2TCN',
   None,
   None],
  [375,
   '3153FEA1-9D96-4A02-B872-374BDBF09173',
   375,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006473',
   '2015-02-02T11:52:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   'T',
   'OF1WAS',
   None,
   None],
  [376,
   'CCE34C13-4CF3-4377-9B4B-F6BEFD885AD4',
   376,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006475',
   '2015-02-02T11:55:00',
   'TENTH ST / JONES ST',
   'T',
   'WF1KOS',
   None,
   None],
  [377,
   '332B27C4-F05A-4056-9398-8927185E42FA',
   377,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006479',
   '2015-02-02T12:02:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'OF2TCN',
   None,
   None],
  [378,
   'EBDF156C-7635-4F77-842F-1244093C4793',
   378,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006481',
   '2015-02-02T12:09:00',
   'SHATTUCK AVE / BANCROFT WAY',
   '1194',
   'AF1IOS',
   None,
   None],
  [379,
   'F8D8F8E6-80E9-45D5-9D42-E5EE63D0392B',
   379,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006482',
   '2015-02-02T12:14:00',
   'SEVENTH ST / POTTER ST',
   'T',
   'WF3WCS',
   None,
   None],
  [380,
   '7D95AA68-D716-4E92-AD76-7A498AC2D83D',
   380,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006486',
   '2015-02-02T12:27:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'WF2RCN, WM2RCN',
   None,
   None],
  [381,
   '4869063A-5943-40A5-BACD-34F7DBA0465C',
   381,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006498',
   '2015-02-02T13:21:00',
   'ALLSTON WAY / MILVIA ST',
   'T',
   'OM2TWN',
   None,
   None],
  [382,
   'AF28CD59-3695-41C0-AC90-AAFFA6860611',
   382,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006499',
   '2015-02-02T13:35:00',
   'TELEGRAPH AVE / PARKER ST',
   '1194',
   'BM1KWS',
   None,
   None],
  [383,
   '995FC53C-E625-46F9-B1C8-794D11EB6544',
   383,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006503',
   '2015-02-02T13:42:00',
   'HASTE ST / TELEGRAPH AVE',
   'T',
   'WM4IWN, WF2TWN',
   None,
   None],
  [384,
   '513B4AF6-F852-40E0-B940-5ABC39E25B26',
   384,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006515',
   '2015-02-02T14:40:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'WM3TCN',
   None,
   None],
  [385,
   '75575ED9-1CFD-4738-9975-1C79B19F3837',
   385,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006516',
   '2015-02-02T14:36:00',
   'SECOND ST / JONES ST',
   '1194',
   'M',
   None,
   None],
  [386,
   '41AB4C39-1713-4EAE-9798-A1F7B338E28B',
   386,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006519',
   '2015-02-02T14:57:00',
   '800 BLOCK FOLGER AVE',
   'T',
   'WM3TCN',
   None,
   None],
  [387,
   '5D8DBE5A-5324-4859-9E30-47635C66BD37',
   387,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006521',
   '2015-02-02T15:07:00',
   '900 BLOCK MURRAY ST',
   'T',
   'WM4TCN',
   None,
   None],
  [388,
   '29496169-2DE3-4BE4-9E1F-48E8766971ED',
   388,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006522',
   '2015-02-02T15:13:00',
   'DERBY ST / SHATTUCK AVE',
   '1194',
   'BM4ION',
   None,
   None],
  [389,
   '09227E7E-5737-4CF0-BB18-1BFF2239C255',
   389,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006525',
   '2015-02-02T15:19:00',
   'SEVENTH ST / POTTER ST',
   'T',
   'WM4TCN',
   None,
   None],
  [390,
   '1398BE06-69F9-4785-BE7C-7EA8AD97D065',
   390,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006528',
   '2015-02-02T15:29:00',
   'SEVENTH ST / ANTHONY ST',
   'T',
   'WF4TCN',
   None,
   None],
  [391,
   'A3F23FB1-5D45-403B-BC64-B7D904A5F53D',
   391,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006533',
   '2015-02-02T16:09:00',
   'MATHEWS ST / CARLETON ST',
   '1196',
   'M',
   None,
   None],
  [392,
   '635D9913-0A4F-48E8-946F-A20B341F1809',
   392,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006535',
   '2015-02-02T16:17:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WM2RCN, M',
   None,
   None],
  [393,
   'F0D77858-8101-4643-927F-BF7215F9C77B',
   393,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006538',
   '2015-02-02T16:30:00',
   '2100 BLOCK M L KING JR WAY',
   '1194',
   'M',
   None,
   None],
  [394,
   '6A3FDFF3-08C0-432A-9D3A-8DFF6F07581C',
   394,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006541',
   '2015-02-02T16:34:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'AR',
   None,
   None],
  [395,
   '1F2A28FF-3A4A-4202-97D1-D75FDE19801A',
   395,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006547',
   '2015-02-02T17:09:00',
   'M L KING JR WAY / DELAWARE ST',
   'T',
   'WF3TWN',
   None,
   None],
  [396,
   'FBC5ECAE-0A24-46F6-87C2-1470B3981540',
   396,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006552',
   '2015-02-02T17:30:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RWN',
   None,
   None],
  [397,
   '2E145EFF-D2AC-41C8-940A-01ECDEA89F55',
   397,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006558',
   '2015-02-02T17:59:00',
   '37.865677884~-122.257266565',
   '1194',
   'M',
   None,
   None],
  [398,
   '0E49AFC2-5C1D-4D2C-9E49-54154829D67B',
   398,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006561',
   '2015-02-02T18:27:00',
   'ADDISON ST / MILVIA ST',
   'T',
   'HF3TCN',
   None,
   None],
  [399,
   'D98375C7-5657-4E5C-9C4A-46BF3B7C5CB7',
   399,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006590',
   '2015-02-02T20:35:00',
   'UNIVERSITY AVE / OXFORD ST',
   'T',
   'WM3TCN',
   None,
   None],
  [400,
   '1F0D6855-EE34-4C9A-89CC-CBB6EFBFAC64',
   400,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006597',
   '2015-02-02T21:16:00',
   'SHATTUCK AVE / DWIGHT WAY',
   'T',
   'WM2TWN',
   None,
   None],
  [401,
   'DF0E8A26-815E-4A30-9559-DE858F8944FB',
   401,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006600',
   '2015-02-02T21:26:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194B',
   'HM2TWN',
   None,
   None],
  [402,
   '355230E3-84DA-4C01-9115-C10736842C55',
   402,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006606',
   '2015-02-02T21:52:00',
   '2300 BLOCK WEST ST',
   'T',
   'BF2TCN',
   None,
   None],
  [403,
   '78B05760-2531-4E19-850C-EF66834E9CE0',
   403,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006610',
   '2015-02-02T22:20:00',
   '2300 BLOCK SAN PABLO AVE',
   'T',
   'HM2TWS',
   None,
   None],
  [404,
   '9532AAE1-C79C-4E52-98A9-20A3D2AD1831',
   404,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006616',
   '2015-02-02T22:56:00',
   'TELEGRAPH AVE / CARLETON ST',
   'T',
   'WF2TWN',
   None,
   None],
  [405,
   'ED47A5D1-3AFE-4FC5-A824-ABD3160DAABD',
   405,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006626',
   '2015-02-03T00:04:00',
   'SAN PABLO AVE/ 67TH ST',
   'T',
   'BM4TWN',
   None,
   None],
  [406,
   'DA0E83CE-5DD5-4D6F-AC4B-F05248F6B0CB',
   406,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006628',
   '2015-02-03T00:14:00',
   'UNIVERSITY AVE / CURTIS ST',
   'T',
   'TOW, BM4TCN',
   None,
   None],
  [407,
   '6F5329FA-49AF-4FB0-AD1F-2AE8E108DF66',
   407,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006632',
   '2015-02-03T01:14:00',
   'REGENT ST / DWIGHT WAY',
   '1194',
   'FC',
   None,
   None],
  [408,
   'FB918472-A48E-48BA-BA73-DE7D94E59A42',
   408,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006637',
   '2015-02-03T02:37:00',
   '7TH ST/HIEN ST',
   'T',
   'WM4TWN',
   None,
   None],
  [409,
   '1844F7DB-1ED7-4BE9-A1B3-5C7C101D9E1A',
   409,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006638',
   '2015-02-03T02:45:00',
   'SAN PABLO AVE / ASHBY AVE',
   '1194',
   'MH',
   None,
   None],
  [410,
   'B8A171F8-2E24-4DD6-90D0-2293FF333D02',
   410,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006643',
   '2015-02-03T04:03:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'M',
   None,
   None],
  [411,
   '7E81E27E-9F07-4536-9650-02FE6D631082',
   411,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006644',
   '2015-02-03T06:06:00',
   'GILMAN ST / FOURTH ST',
   'T',
   'WM3TWN',
   None,
   None],
  [412,
   '00E5B2E5-60F5-4844-87B6-99897EA7D0D6',
   412,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006645',
   '2015-02-03T06:23:00',
   '37.8787044545782~-122.304641908757',
   'T',
   'WF4TCN',
   None,
   None],
  [413,
   '069C74AD-3FE8-4B18-BEF1-413B6A2E3DD8',
   413,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006647',
   '2015-02-03T06:46:00',
   'POTTER ST / SEVENTH ST',
   'T',
   'HM2TCN',
   None,
   None],
  [414,
   '617A9020-B5D5-42CF-8DE0-890D639A5597',
   414,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006663',
   '2015-02-03T08:11:00',
   'NINTH ST / PARKER ST',
   '1196',
   'WM4TON',
   None,
   None],
  [415,
   '7E307F3A-83DE-421A-86A2-8B115C15383B',
   415,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006666',
   '2015-02-03T08:29:00',
   'PRINCE ST / WHEELER ST',
   '1194',
   'P',
   None,
   None],
  [416,
   'B4D51D8E-20BC-4D1B-BCDB-C5F5E8C4823A',
   416,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006676',
   '2015-02-03T09:14:00',
   'RUSSELL ST / STANTON ST',
   'T',
   'WF4TCN',
   None,
   None],
  [417,
   'F33C10D3-04AC-4F18-9D1B-DEE6164074DE',
   417,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006679',
   '2015-02-03T09:33:00',
   'DWIGHT WAY / SACRAMENTO ST',
   'T',
   'WM4TCN',
   None,
   None],
  [418,
   '6F62B38F-22AA-44DF-A310-FE559AD919AA',
   418,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006684',
   '2015-02-03T09:53:00',
   'BANCROFT WAY / BARROWS LN',
   'T',
   'WF4TCN',
   None,
   None],
  [419,
   'E858996B-6FB6-4442-8A7B-7B0B3BF200C9',
   419,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006685',
   '2015-02-03T09:58:00',
   'ASHBY AVE / ACTON ST',
   'T',
   'BF2TCN',
   None,
   None],
  [420,
   'D831D441-A3FC-4B79-BD94-97CEA5CE8780',
   420,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006690',
   '2015-02-03T10:08:00',
   'BOWDITCH ST / DURANT AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [421,
   'B1977B03-BEB8-4EAE-85DE-F84611DAD17E',
   421,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006693',
   '2015-02-03T10:17:00',
   'BOWDITCH ST / CHANNING WAY',
   'T',
   'HM3TCN',
   None,
   None],
  [422,
   '116D1195-2584-4E53-93C4-0591E3848154',
   422,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006694',
   '2015-02-03T10:28:00',
   'BANCROFT WAY / ELLSWORTH ST',
   'T',
   'WF2TCN',
   None,
   None],
  [9987,
   'D1115B1B-6A20-4D61-8C56-F6624A27A512',
   9987,
   1452769362,
   '932858',
   1452769362,
   '932858',
   None,
   '2015-00067502',
   '2015-11-17T02:34:00',
   '1300 BLOCK SHATTUCK AVE',
   '1194',
   'WF2IWN, WM2IWN, M',
   None,
   None],
  [423,
   '7296000A-D79E-4773-A522-84A689AB0FF4',
   423,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006699',
   '2015-02-03T10:40:00',
   'BANCROFT WAY / COLLEGE AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [424,
   'E9C7A6B3-D16D-44C8-B57C-98B72D0E21DA',
   424,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006700',
   '2015-02-03T10:46:00',
   'BARROWS LN / BANCROFT WAY',
   '1194B',
   'WM2TCN',
   None,
   None],
  [425,
   '3F858062-E49B-4B1E-A6B4-F03CD98E4F81',
   425,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006702',
   '2015-02-03T10:51:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [426,
   '0E367745-BEEB-4043-B6E3-77E5F41CB384',
   426,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006706',
   '2015-02-03T10:57:00',
   'ASHBY AVE / PIEDMONT AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [427,
   '57C1EF39-85AE-4C45-B45F-7E7CF49181CF',
   427,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006707',
   '2015-02-03T10:59:00',
   'BANCROFT WAY / SHATTUCK AVE',
   'T',
   'BF4TCN',
   None,
   None],
  [428,
   '36A9B583-144D-4ED9-BE76-45CF3F8695F0',
   428,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006709',
   '2015-02-03T11:07:00',
   'WARRING ST / PARKER ST',
   'T',
   'WF3TCN',
   None,
   None],
  [429,
   'ABCEBF2D-7C1F-49C0-B9E9-CD8E31918A52',
   429,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006718',
   '2015-02-03T11:41:00',
   'SEVENTH ST / POTTER ST',
   'T',
   'WF2TCN',
   None,
   None],
  [430,
   '5272135F-E2BF-4181-A752-BE6DD6EDD6FD',
   430,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006719',
   '2015-02-03T11:42:00',
   'SHATTUCK AVE / ALLSTON WAY',
   '1194',
   'BM1WAS',
   None,
   None],
  [431,
   'EDF3984C-9BF2-420F-8796-8E328A7F2C23',
   431,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006723',
   '2015-02-03T12:03:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BM1RWN',
   None,
   None],
  [432,
   '266C9A20-1B29-491C-8D0D-82DC79F5E383',
   432,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006727',
   '2015-02-03T12:11:00',
   'NINTH ST / ASHBY AVE',
   'T',
   'OF2TCN',
   None,
   None],
  [433,
   '90425195-B8E8-4EF4-BA48-42665FC16B40',
   433,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006729',
   '2015-02-03T12:19:00',
   'ADDISON ST / MCKINLEY AVE',
   'T',
   'OM4TCN',
   None,
   None],
  [434,
   '4380A69D-F308-44D2-83A7-ECC09F86B327',
   434,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006732',
   '2015-02-03T12:33:00',
   'DWIGHT WAY / M L KING JR WAY',
   'T',
   'AF4KAN',
   None,
   None],
  [435,
   'D920D5D5-7959-4485-9ECF-384868025C90',
   435,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006737',
   '2015-02-03T12:57:00',
   'SAN PABLO AVE / BURNETT ST',
   'T',
   'OM2TCN',
   None,
   None],
  [436,
   'AEC3AEA4-36E4-4F4F-8F9C-EA34E2788F4E',
   436,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006744',
   '2015-02-03T13:08:00',
   'DWIGHT WAY / BOWDITCH ST',
   '1194',
   'WF2RCN, M',
   None,
   None],
  [437,
   'D5AB9572-47FA-4231-902B-8A5828D3F8FD',
   437,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006746',
   '2015-02-03T13:18:00',
   'SEVENTH ST / POTTER ST',
   'T',
   'AF2WOS',
   None,
   None],
  [438,
   '5905679B-04F5-4810-B977-CF8C2BBD37B4',
   438,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006752',
   '2015-02-03T13:36:00',
   'PARKER ST / REGENT ST',
   '1194B',
   'FC',
   None,
   None],
  [439,
   '0DD101E4-531D-4E53-B3E2-6421DD5CF2BD',
   439,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006754',
   '2015-02-03T13:40:00',
   'KITTREDGE ST / SHATTUCK AVE',
   '1194',
   'WM3RCN',
   None,
   None],
  [440,
   '696A40EB-84DE-4199-A16B-905210440442',
   440,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006755',
   '2015-02-03T13:56:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   'T',
   'WF4TWN',
   None,
   None],
  [441,
   '2EE93480-BA9A-43A9-8C3D-58ABE1A6A937',
   441,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006765',
   '2015-02-03T14:19:00',
   'TELEGRAPH AVE / CHANNING WAY',
   '1194',
   '0',
   None,
   None],
  [442,
   '64CEAC77-6ABE-4ECF-A84F-931BF94BF7D5',
   442,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006766',
   '2015-02-03T14:20:00',
   'FULTON ST / BLAKE ST',
   '1194',
   'M',
   None,
   None],
  [443,
   'A8CF1EAA-118C-436E-A400-A58F3152495E',
   443,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006770',
   '2015-02-03T14:31:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'BM4RCN',
   None,
   None],
  [444,
   '9FFFD576-BE7A-44F3-A0C6-0316B896BC2C',
   444,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006794',
   '2015-02-03T16:40:00',
   'OXFORD ST / CENTER ST',
   'T',
   'HM2TWN',
   None,
   None],
  [445,
   'BD9F2F31-E6BA-4D0A-A304-8A331A640EFE',
   445,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006795',
   '2015-02-03T16:47:00',
   'BROWNING ST / ALLSTON WAY',
   'T',
   'BM4TWN',
   None,
   None],
  [446,
   '13982ED4-4D3C-4B93-B79B-B77C6D3298C3',
   446,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006803',
   '2015-02-03T17:07:00',
   'ASHBY AVE / WHEELER ST',
   'T',
   'WM3TWS, WF3TCS, M',
   None,
   None],
  [447,
   'C16ADD63-F8CC-4FD1-903B-123D4F9F9D77',
   447,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006812',
   '2015-02-03T17:36:00',
   'HASTE ST / TELEGRAPH AVE',
   'T',
   'TOW, AR, OM4TCN',
   None,
   None],
  [448,
   '6F1EAB72-1FEB-4B76-9704-EC83606BDECE',
   448,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006814',
   '2015-02-03T17:41:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   '1194',
   'OM2RCN',
   None,
   None],
  [449,
   'CB84D432-A54F-4C9D-912A-3927D38B3F49',
   449,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006819',
   '2015-02-03T18:07:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM3RWS',
   None,
   None],
  [450,
   '9B992259-2CDA-43F8-9C88-18A9AFF180AC',
   450,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006825',
   '2015-02-03T18:28:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RCS',
   None,
   None],
  [451,
   'D83492E0-C2DB-4097-B512-63154AB15891',
   451,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006832',
   '2015-02-03T19:00:00',
   '2500 BLOCK GRANT ST',
   '1196',
   'M',
   None,
   None],
  [452,
   '961AD718-D1F0-4559-9A08-54EA4863265A',
   452,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006833',
   '2015-02-03T19:00:00',
   '2500 BLOCK GRANT ST',
   '1196',
   'WF4KAS, P',
   None,
   None],
  [453,
   'DF89BC6C-C3A3-4ED6-B064-AD216CA9A5C7',
   453,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006834',
   '2015-02-03T19:04:00',
   'ALLSTON WAY / ACTON ST',
   '1194B',
   None,
   None,
   None],
  [454,
   'E80EEA82-EA6B-42E5-BBD7-6CF726E8A552',
   454,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006846',
   '2015-02-03T20:04:00',
   'ROSE ST / MILVIA ST',
   'T',
   'OF4TCN',
   None,
   None],
  [455,
   '61385655-21E3-4DBB-A9CB-85EF895AA65F',
   455,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006853',
   '2015-02-03T20:31:00',
   'RUSSELL ST / COLLEGE AVE',
   '1194',
   'WM4IWN, M',
   None,
   None],
  [456,
   '97B3B822-66E2-4E35-A611-94CBDF6FF5B9',
   456,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006854',
   '2015-02-03T20:35:00',
   'EL/PARK',
   'T',
   'AF1TWN',
   None,
   None],
  [457,
   '8F05D824-B039-4FA4-9BFF-FB118D4D562B',
   457,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006856',
   '2015-02-03T20:41:00',
   'SHATTUCK AVE / CHANNING WAY',
   '1194B',
   'HM2TWS, M',
   None,
   None],
  [458,
   '6DCDD48A-D2FF-4429-8274-7B21FDEB1EF2',
   458,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006869',
   '2015-02-03T21:27:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   '1196',
   'BM2TCS, M',
   None,
   None],
  [459,
   '141237B3-E821-4AB2-A3B8-328CA56326CF',
   459,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006873',
   '2015-02-03T21:55:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [460,
   'C4CBFCD3-5AA6-43E5-B792-BCBA09B7D1E9',
   460,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006877',
   '2015-02-03T22:36:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'BM2RCN',
   None,
   None],
  [461,
   '18CD2CB7-CFDA-46F5-B097-3F834874D72A',
   461,
   1444146408,
   '932858',
   1444146408,
   '932858',
   None,
   '2015-00006884',
   '2015-02-03T23:18:00',
   'CEDAR ST / MILVIA ST',
   'T',
   'WM3TWN',
   None,
   None],
  [462,
   '1ECA32E2-4096-426D-94D3-970423E3A7ED',
   462,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006892',
   '2015-02-04T00:09:00',
   'SHATTUCK AVE/61ST ST',
   'T',
   'OM3TWS',
   None,
   None],
  [463,
   'D8218107-945C-46CE-9301-FC78E8E5F7CB',
   463,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006893',
   '2015-02-04T00:15:00',
   '2400 BLOCK DURANT AVE',
   '1194',
   'WM2ICN',
   None,
   None],
  [464,
   '96A78BFA-EE2A-428C-90F6-198246190783',
   464,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006895',
   '2015-02-04T00:32:00',
   'M L KING JR WAY / ALCATRAZ AVE',
   'T',
   'BM3TWS',
   None,
   None],
  [465,
   '8BCF42A9-F21E-444B-9305-178922E97A98',
   465,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006896',
   '2015-02-04T00:40:00',
   'UNIVERSITY AVE / CHESTNUT ST',
   'T',
   'AF2TWN',
   None,
   None],
  [466,
   '5806D93E-CEA9-47F1-A970-E9B6200E79F5',
   466,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006897',
   '2015-02-04T01:04:00',
   'SAN PABLO AVE / HARRISON ST',
   'T',
   'BM3TWN',
   None,
   None],
  [467,
   '3AAA2D41-58B2-456C-A78F-94484365E260',
   467,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006902',
   '2015-02-04T02:04:00',
   '2200 BLOCK MILVIA ST',
   '1194',
   'FC',
   None,
   None],
  [468,
   '47A16CA3-A65D-497A-AA39-AA8665004A18',
   468,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006914',
   '2015-02-04T06:46:00',
   '2000 BLOCK CENTER ST',
   '1194',
   'WF2RWN, WM2RWN, M',
   None,
   None],
  [469,
   '959EEC5B-B2C3-4371-9197-3991DA03AF89',
   469,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006915',
   '2015-02-04T06:50:00',
   '1800 BLOCK UNIVERSITY AVE',
   '1194',
   'WM3RCN',
   None,
   None],
  [470,
   'B7546DA8-B488-4A8D-B1DB-905475F7F82E',
   470,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006919',
   '2015-02-04T07:15:00',
   '1100 BLOCK UNIVERSITY AVE',
   '1194',
   'WF4RCN',
   None,
   None],
  [471,
   '0AC7DC72-F073-4DE1-9C94-7BE5774D7046',
   471,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006932',
   '2015-02-04T09:09:00',
   'DWIGHT WAY / TENTH ST',
   'T',
   'WM3TCN',
   None,
   None],
  [472,
   'C24F89A1-6746-447E-99D3-82B9420CF42B',
   472,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006934',
   '2015-02-04T09:15:00',
   'ADELINE ST / ESSEX ST',
   'T',
   'BM4TCN',
   None,
   None],
  [473,
   '7C5BBE33-43B2-4A96-9710-B958B3436153',
   473,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006938',
   '2015-02-04T09:32:00',
   'DERBY ST / PIEDMONT AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [474,
   '1FD255C9-A134-45A5-8EB3-B104BCB93496',
   474,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006939',
   '2015-02-04T09:43:00',
   'PIEDMONT AVE / PARKER ST',
   'T',
   'WF4TCN',
   None,
   None],
  [475,
   '0B88F7C1-9FCD-4E8B-9D5F-0C9F7C4DB28F',
   475,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006941',
   '2015-02-04T09:50:00',
   'DERBY ST / CLAREMONT BLVD',
   'T',
   'WF4TCN',
   None,
   None],
  [476,
   'A89267DA-AFEA-4AB6-A523-388E5FF9C418',
   476,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006943',
   '2015-02-04T10:06:00',
   'DERBY ST / WARRING ST',
   'T',
   'AF3TCN',
   None,
   None],
  [477,
   'EA950AC2-C5ED-4064-8B84-D54C3A4E6FF2',
   477,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006944',
   '2015-02-04T10:10:00',
   'DERBY ST / CLAREMONT BLVD',
   'T',
   'AF2TCN',
   None,
   None],
  [478,
   '0EDFF5FC-7A27-46E7-A8A8-A23E8218B28E',
   478,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006945',
   '2015-02-04T10:18:00',
   'PIEDMONT AVE/DERBY STREET',
   'T',
   'BM3TCN',
   None,
   None],
  [479,
   'D628EECC-E8A1-445A-B41C-D76D3AC891D3',
   479,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006949',
   '2015-02-04T10:26:00',
   'CLAREMONT BLVD / FOREST AVE',
   'T',
   'WM2TCN',
   None,
   None],
  [480,
   '1358462F-E516-4E88-8A1D-9F54A5D3D506',
   480,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006952',
   '2015-02-04T10:34:00',
   'CLAREMONT BLVD / DERBY ST',
   'T',
   'WM3TCN',
   None,
   None],
  [481,
   '091F59E7-2C01-4951-AB25-B6F9589BAD72',
   481,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006953',
   '2015-02-04T10:35:00',
   'NINTH ST / POTTER ST',
   'T',
   'WM2TCN',
   None,
   None],
  [482,
   'DFAD446E-597E-441B-BFB1-CC1965AA5790',
   482,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006955',
   '2015-02-04T10:49:00',
   'ASHBY AVE / ELLIS ST',
   'T',
   'OF2TCN',
   None,
   None],
  [483,
   '8B70269F-1C1F-4633-AF56-BD33C19A54A2',
   483,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006956',
   '2015-02-04T10:52:00',
   'BELROSE AVE / DERBY ST',
   'T',
   'WF4TCN',
   None,
   None],
  [484,
   'E6F43D29-40AF-4A63-B4B2-77152F43B507',
   484,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006957',
   '2015-02-04T10:54:00',
   'DERBY ST / WARRING ST',
   'T',
   'WM4TCN',
   None,
   None],
  [485,
   'B2C486BB-DD38-4531-AF65-D2FAC81EC173',
   485,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006958',
   '2015-02-04T10:59:00',
   'ASHBY AVE / ADELINE ST',
   'T',
   'WF2TCN',
   None,
   None],
  [486,
   '885EDED3-EEA0-40BD-9B29-A90DFF6E5501',
   486,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006959',
   '2015-02-04T11:01:00',
   'FOREST/CLAREMONT',
   'T',
   'AM1IOS',
   None,
   None],
  [487,
   'ACC21315-2239-43EA-8D8C-7D9FAF9F7BF3',
   487,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006963',
   '2015-02-04T11:08:00',
   'WARRING ST / DERBY ST',
   'T',
   'AF4TCN',
   None,
   None],
  [488,
   'F9167DA1-BF26-42EC-BB6F-8E2CCEA51EC3',
   488,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006964',
   '2015-02-04T11:16:00',
   '1900 BLOCK SAN PABLO AVE',
   '1194',
   'HM4RCN',
   None,
   None],
  [489,
   'ABCEE0E6-37DA-4514-9726-7980956B13F6',
   489,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006965',
   '2015-02-04T11:17:00',
   'PIEDMONT AVE / FOREST AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [490,
   '21D3A97F-1A20-4BD7-B5CA-EAF43B7AF5BC',
   490,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006968',
   '2015-02-04T11:25:00',
   'BANCROFT WAY / ELLSWORTH ST',
   'T',
   'HF4KAN',
   None,
   None],
  [491,
   'A3995BD2-3C5E-4285-80F9-7FC7E8873C4D',
   491,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006969',
   '2015-02-04T11:26:00',
   'M L KING JR WAY / ASHBY AVE',
   '1196',
   'M',
   None,
   None],
  [492,
   'E73A1AE5-7B20-4815-8646-1C43100E7881',
   492,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006970',
   '2015-02-04T11:32:00',
   'BELROSE AVE / DERBY ST',
   'T',
   'OF4TCN',
   None,
   None],
  [493,
   'C4AFFE7E-4B9E-4C64-8343-B42FEFA98AAE',
   493,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006971',
   '2015-02-04T11:32:00',
   'FOREST AVE / CLAREMONT BLVD',
   'T',
   'OM4TCN, AF1KAN',
   None,
   None],
  [494,
   '0F83A906-2305-45EB-9EA8-4A559368218F',
   494,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006972',
   '2015-02-04T11:36:00',
   'FULTON ST / KITTREDGE ST',
   'T',
   'OM4TCN',
   None,
   None],
  [495,
   'F58D2C35-57A7-4865-BA98-99F572220FCB',
   495,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006976',
   '2015-02-04T11:50:00',
   'DERB/WARR',
   'T',
   'WF4TCN',
   None,
   None],
  [496,
   'DA8CA399-C1A0-42C8-A812-5AE46C9B58F6',
   496,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006977',
   '2015-02-04T12:10:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BM1RWN',
   None,
   None],
  [497,
   'A640914C-0B68-4772-9E6A-D85EDE2F4DEE',
   497,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006978',
   '2015-02-04T12:11:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BM1RCN',
   None,
   None],
  [498,
   'BB90B554-6C5A-4496-B688-37A23CB82697',
   498,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006979',
   '2015-02-04T12:11:00',
   'DERBY/CLARE',
   'T',
   'WM4TCN',
   None,
   None],
  [499,
   '8B240698-AC94-44A7-9CA9-047E78604F12',
   499,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006984',
   '2015-02-04T12:20:00',
   'DERBY/CLAREMONT',
   'T',
   'WM3TCN',
   None,
   None],
  [500,
   '630467C2-5AC1-4D43-B703-5ADCFB98596B',
   500,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00006993',
   '2015-02-04T12:46:00',
   'BANCROFT WAY / COLLEGE AVE',
   'T',
   'WM2TCN',
   None,
   None],
  [501,
   '62B39ACC-D263-495A-9F2F-C2785FA55F0A',
   501,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007000',
   '2015-02-04T13:06:00',
   '1900 BLOCK DWIGHT WAY',
   'T',
   'WF4TCN',
   None,
   None],
  [502,
   'DB849662-5E4E-486F-A554-149C72B28E11',
   502,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007018',
   '2015-02-04T14:31:00',
   'UNI/BON',
   'T',
   'AF2TCN',
   None,
   None],
  [503,
   '4EFC7260-A63B-4FE3-B92D-D77287E5C250',
   503,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007027',
   '2015-02-04T15:32:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WM3RWS',
   None,
   None],
  [504,
   '5BF51526-B3F5-4E15-B31F-4F4E8FFCB2C9',
   504,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007031',
   '2015-02-04T16:00:00',
   'STANTON ST/ASHBY AVE',
   '1196',
   'M',
   None,
   None],
  [505,
   '24B39F5B-F99E-46A2-A27D-F41C449A366C',
   505,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007043',
   '2015-02-04T16:33:00',
   'SIXTH ST / HARRISON ST',
   '1196',
   'M',
   None,
   None],
  [506,
   '514E00D3-1EEE-40B3-BF65-89DC017EB6C7',
   506,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007051',
   '2015-02-04T17:11:00',
   'UNIVERSITY AVE / CALIFORNIA ST',
   '1196',
   'M',
   None,
   None],
  [507,
   '7B82E869-B675-4A7E-8306-FD05E0685793',
   507,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007057',
   '2015-02-04T17:30:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'WF4RWN',
   None,
   None],
  [508,
   'FA6DCC0B-61C7-47DD-98E3-FDA5FFCC1036',
   508,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007059',
   '2015-02-04T17:33:00',
   'MABEL ST / ASHBY AVE',
   '1196',
   'M',
   None,
   None],
  [509,
   '44A2B080-2393-4B63-AE29-021D41C690C2',
   509,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007065',
   '2015-02-04T17:41:00',
   '2300 BLOCK SHATTUCK AVE',
   '1194',
   'WM3RWN',
   None,
   None],
  [510,
   '4521A19A-EAF1-4AC9-AA72-A8EAFFED4673',
   510,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007069',
   '2015-02-04T17:51:00',
   '3300 BLOCK ADELINE',
   '1196',
   'M',
   None,
   None],
  [511,
   'D6FB8BF5-E433-4172-8515-D3CA5B20DFCC',
   511,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007072',
   '2015-02-04T18:12:00',
   '60TH ST/WHITNEY ST',
   '1196',
   'BM4KAS, P',
   None,
   None],
  [512,
   'FBB50E4D-66EB-4863-B99E-0945C98A67C4',
   512,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007081',
   '2015-02-04T19:44:00',
   'UNIVERSITY AVE / SHATTUCK AVE',
   '1194',
   'WM4TCN',
   None,
   None],
  [513,
   'CDBE69C1-1BF6-4B90-845A-0A52C4CAD61C',
   513,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007086',
   '2015-02-04T20:07:00',
   'CHANNING WAY / ELLSWORTH ST',
   '1194',
   'MH',
   None,
   None],
  [514,
   'DB2AC36B-DDBC-413E-B3C6-FE5B10618616',
   514,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007101',
   '2015-02-04T21:38:00',
   '2100 BLOCK M L KING JR WAY',
   '1194',
   'M',
   None,
   None],
  [515,
   'DDED2355-E25F-4BEE-9AEC-0654D89CBFB8',
   515,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007106',
   '2015-02-04T22:08:00',
   'DWIGHT WAY / BOWDITCH ST',
   '1194',
   'M',
   None,
   None],
  [516,
   '3AD2981C-C3A7-46B4-B0B5-994ED9F90F62',
   516,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007109',
   '2015-02-04T22:24:00',
   '2700 BLOCK HASTE ST',
   '1194',
   'M',
   None,
   None],
  [517,
   '942CFBDA-DBDA-4B7C-B172-867E985B57E7',
   517,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007116',
   '2015-02-04T23:11:00',
   'ASHBY AVE / OTIS ST',
   'T',
   'HM3TWN',
   None,
   None],
  [518,
   '53369EF4-4866-4B7C-BE34-5E31AA363894',
   518,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007120',
   '2015-02-04T23:35:00',
   'ADELINE ST / WARD ST',
   'T',
   'BM4TWN',
   None,
   None],
  [519,
   '840C9FDC-1A65-4DCD-903F-4290B30029CB',
   519,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007123',
   '2015-02-04T23:59:00',
   'SIXTY-THIRD ST / SAN PABLO AVE',
   '1196',
   'BM4TWS',
   None,
   None],
  [520,
   '18C084E7-903C-405B-BB05-8429A9B625F1',
   520,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007129',
   '2015-02-05T00:53:00',
   'TENTH ST / UNIVERSITY AVE',
   'T',
   'BF3TCN',
   None,
   None],
  [521,
   '071B3571-E245-4B09-9FE3-8DBE88072787',
   521,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007133',
   '2015-02-05T01:53:00',
   'DURANT AVE / ELLSWORTH ST',
   'T',
   'WF2TWN',
   None,
   None],
  [522,
   '339338CA-8D03-493D-BB10-F177EFFE1114',
   522,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007192',
   '2015-02-05T09:11:00',
   'DEAKIN/S OF PRINCE',
   '1194',
   'BM4RWN',
   None,
   None],
  [523,
   '647ED430-09D6-474B-9930-159A00FFF316',
   523,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007194',
   '2015-02-05T09:20:00',
   'WOOLSEY ST/COLBY AVE',
   'T',
   'BM3TCN',
   None,
   None],
  [524,
   'C4741C7C-2A0A-48C0-A487-FF6D57EAA0F0',
   524,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007206',
   '2015-02-05T10:48:00',
   'BANC/TELE',
   'T',
   'AF3TCN',
   None,
   None],
  [525,
   'EF1ABA96-138D-4085-BA88-9A9CCCF3DFD9',
   525,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007209',
   '2015-02-05T10:57:00',
   'BOWDITCH ST / DURANT AVE',
   '1194',
   'AM2TCN',
   None,
   None],
  [526,
   '95F9CB8A-30C9-4EBE-9557-69ED7070C50A',
   526,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007213',
   '2015-02-05T11:09:00',
   'BOWDITCH/DURANT',
   '1194',
   'AM2TCN',
   None,
   None],
  [527,
   'D309EA7C-F072-49BE-A989-8A82F8CD1FED',
   527,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007214',
   '2015-02-05T11:22:00',
   'CARLETON ST / SHATTUCK AVE',
   'T',
   'OM1IOS',
   None,
   None],
  [528,
   '898BC5CD-C510-42C2-95DC-1D74758E5383',
   528,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007222',
   '2015-02-05T11:52:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'BM3RWN',
   None,
   None],
  [529,
   '0697EA7F-A98F-4770-80B6-46AF5729AD28',
   529,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007225',
   '2015-02-05T11:59:00',
   'SACRAMENTO ST / WARD ST',
   'T',
   'AM3TWN',
   None,
   None],
  [530,
   'E53F9F66-48DE-4CE8-BDE3-45E251D6CEC1',
   530,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007228',
   '2015-02-05T12:23:00',
   'ASHBY AVE / ADELINE ST',
   'T',
   'BM4TWN',
   None,
   None],
  [531,
   '9CE1487F-9946-4016-A767-ECDE5C1862B1',
   531,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007229',
   '2015-02-05T12:26:00',
   'PRINCE ST / REGENT ST',
   '1194',
   'WM2WWN',
   None,
   None],
  [532,
   'EC8DD75E-AAB5-493A-9B05-0BA94BA66F04',
   532,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007238',
   '2015-02-05T12:48:00',
   '2500 BLOCK BENVENUE AVE',
   '1194',
   'M',
   None,
   None],
  [533,
   'A2478127-EBC8-4777-A425-07251BC0FB6E',
   533,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007248',
   '2015-02-05T13:48:00',
   '54TH ST / DOVER ST',
   '1194',
   'BM4RWS, M',
   None,
   None],
  [534,
   'A92ABEF7-E26C-4ED9-981A-D144796F289A',
   534,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007250',
   '2015-02-05T13:56:00',
   'FAIRVIEW ST / ADELINE ST',
   'T',
   'M',
   None,
   None],
  [535,
   'DED21301-3BE7-4F6B-85CA-978DAB9B0351',
   535,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007252',
   '2015-02-05T13:59:00',
   '2400 BLOCK SHATTUCK AVE',
   '1194',
   'WM4RCN, WM3RCN',
   None,
   None],
  [536,
   '20D40928-CC7E-413A-B8CB-FBEE8C536087',
   536,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007256',
   '2015-02-05T14:22:00',
   'UNIVERSITY AVE / CURTIS ST',
   'T',
   'M',
   None,
   None],
  [537,
   'C06F8FFB-D8D0-47F1-BEC2-2DFFD01487A0',
   537,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007263',
   '2015-02-05T14:49:00',
   '1100 BLOCK HEARST AVE',
   'T',
   'M',
   None,
   None],
  [538,
   'DD588927-A455-444B-9705-7A8FF63A8B27',
   538,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007283',
   '2015-02-05T16:27:00',
   'THE ALAMEDA / NAPA AVE',
   'T',
   'AM2TWN',
   None,
   None],
  [539,
   '6F09675E-D33A-430C-ABBB-3CDE2315B312',
   539,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007287',
   '2015-02-05T16:46:00',
   'ROSE ST / SHATTUCK AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [540,
   '1A12D4B0-43CA-4CAA-BE04-8FE95BFF3797',
   540,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007288',
   '2015-02-05T16:47:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'WM3IAN, P',
   None,
   None],
  [541,
   '5E540D53-3AE5-4860-A1B4-A6281FF5EC15',
   541,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007292',
   '2015-02-05T17:01:00',
   '37.8661036188751~-122.305688135031',
   'T',
   'AM2TCN',
   None,
   None],
  [542,
   '45932D9C-9AA3-49D3-BAE0-E0548FA54A36',
   542,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007295',
   '2015-02-05T17:07:00',
   'SHATTUCK AVE / ROSE ST',
   'T',
   'WM4TCN',
   None,
   None],
  [543,
   'F129AD63-23ED-40BF-B665-C4977BD0D6E1',
   543,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007302',
   '2015-02-05T17:26:00',
   '2300 BLOCK TELEGRAPH AVE',
   '1194',
   'HF4IWN',
   None,
   None],
  [544,
   '8FA04583-BF11-4FFD-BA1A-DEF55AD03022',
   544,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007325',
   '2015-02-05T19:19:00',
   '2000 BLOCK OREGON ST',
   '1196',
   'M',
   None,
   None],
  [545,
   '1C394EF6-F0E5-4D78-A6CC-5EAD791CF19C',
   545,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007338',
   '2015-02-05T20:44:00',
   'FLORENCE ST / RUSSELL ST',
   'T',
   'WM2TCN',
   None,
   None],
  [546,
   '0A065630-3F09-4F95-89A7-38B886DCD237',
   546,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007350',
   '2015-02-05T21:57:00',
   '2500 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [547,
   '3296799D-2FB6-4589-A805-2D434DA546AC',
   547,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007375',
   '2015-02-06T00:59:00',
   'CARLETON ST / TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [548,
   '024109D1-D730-4027-8B01-BF375C440056',
   548,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007382',
   '2015-02-06T01:53:00',
   'RUSS/CHERRY',
   '1196',
   'M',
   None,
   None],
  [549,
   '0A467984-1BE8-449A-B705-A895FC01DB28',
   549,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007441',
   '2015-02-06T11:00:00',
   '1300 BLOCK UNIVERSITY AVE',
   'T',
   'WM3RCN',
   None,
   None],
  [550,
   '9379941C-E296-4AF4-B17B-B4B29909B12B',
   550,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007538',
   '2015-02-06T20:15:00',
   'OREGON ST / ADELINE ST',
   'T',
   'WM2TWN',
   None,
   None],
  [551,
   '4BD357A9-4E51-45BA-8FE0-02E61BB2E95E',
   551,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007540',
   '2015-02-06T20:21:00',
   'COLLEGE AVE / ASHBY AVE',
   'T',
   'BM3TWN',
   None,
   None],
  [552,
   '5A4A51E1-7940-4362-BAF8-19A1367B2485',
   552,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007545',
   '2015-02-06T20:35:00',
   'DERBY ST / MILVIA ST',
   'T',
   'BF4TWN',
   None,
   None],
  [553,
   'DA395D79-8C4A-4C61-8258-448879E451F2',
   553,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007551',
   '2015-02-06T20:57:00',
   'SHATTUCK AVE / CHANNING WAY',
   'T',
   'AM1TWN',
   None,
   None],
  [554,
   'C23219AC-BAAD-46A0-B7DE-6EA3038984A0',
   554,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007561',
   '2015-02-06T21:31:00',
   'SACRAMENTO ST / STUART ST',
   'T',
   'OM2TWN',
   None,
   None],
  [555,
   'ECA25F26-887B-4634-8458-AA220F5922DF',
   555,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007562',
   '2015-02-06T21:48:00',
   'ASHBY AVE / COLBY ST',
   'T',
   'BM4TWN',
   None,
   None],
  [556,
   '8CE55B97-F421-42B4-AA6A-5811459EF9B4',
   556,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007563',
   '2015-02-06T21:59:00',
   'FAIRVIEW ST / SACRAMENTO ST',
   'T',
   'BF3TWN',
   None,
   None],
  [557,
   'CF77DD08-D2B4-41B4-8A19-D19C845F66BB',
   557,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007566',
   '2015-02-06T22:06:00',
   'FAIR/SAC',
   'T',
   'BM3TWN',
   None,
   None],
  [558,
   '59D08A9A-9055-4705-A42C-7E3B7BCCECDF',
   558,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007567',
   '2015-02-06T22:07:00',
   'SIXTY-SECOND ST / BAKER ST',
   'T',
   'BM2TWN',
   None,
   None],
  [559,
   '8547D583-79E3-4BFD-A01C-BBAEE9270644',
   559,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007571',
   '2015-02-06T22:20:00',
   'ASHBY AVE / KING ST',
   'T',
   'BF3TCN',
   None,
   None],
  [560,
   'D4722C93-43DE-4EE7-9FD5-3F049B66C928',
   560,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007574',
   '2015-02-06T22:26:00',
   '2000 BLOCK FOURTH ST',
   'T',
   'TOW, BM2TCS',
   None,
   None],
  [561,
   'F3353BEA-1F04-441C-8940-3D061935CDE8',
   561,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007575',
   '2015-02-06T22:29:00',
   'SAN PABLO AVE / HEINZ AVE',
   'T',
   'P',
   None,
   None],
  [562,
   '278C443D-1566-4E2B-97B2-1D5C372DE2FE',
   562,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007581',
   '2015-02-06T22:59:00',
   'ADELINE ST / ALCATRAZ AVE',
   'T',
   'WM2TWN',
   None,
   None],
  [563,
   '704A1904-12F2-4965-A3C1-221F49FCFBA8',
   563,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007582',
   '2015-02-06T23:00:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'M',
   None,
   None],
  [564,
   'BAE532E7-FC42-4AA6-A7D8-58E5A6D35BB6',
   564,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007585',
   '2015-02-06T23:15:00',
   'DERBY ST / M L KING JR WAY',
   'T',
   'WM2TCN',
   None,
   None],
  [565,
   '0F0800CC-E52C-4CE5-9E82-4D28C4A1920F',
   565,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007586',
   '2015-02-06T23:17:00',
   'UNIVERSITY AVE / CALIFORNIA ST',
   'T',
   'HM2TWN',
   None,
   None],
  [566,
   '8790B5EB-D3EC-44E8-83B7-0C632C35CDA0',
   566,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007590',
   '2015-02-06T23:42:00',
   'TELEGRAPH AVE / DURANT AVE',
   '1194',
   'WM1TWN',
   None,
   None],
  [567,
   '85C72654-3B33-443C-B683-61F376A141EC',
   567,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007591',
   '2015-02-06T23:42:00',
   'ADELINE ST / SIXTY-SECOND ST',
   'T',
   'WM2TWN',
   None,
   None],
  [568,
   '7098633A-F635-4A26-8933-D45AE48E9DCA',
   568,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007593',
   '2015-02-06T23:50:00',
   'PARKER ST / SAN PABLO AVE',
   'T',
   'TOW, AR, P',
   None,
   None],
  [569,
   '4EABBC48-6EA0-443E-B67D-7FFE498E0A93',
   569,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007598',
   '2015-02-07T00:33:00',
   'UNIVERSITY AVE / EASTSHORE HWY',
   '1196',
   'HF2TWN',
   None,
   None],
  [570,
   '1A788664-7535-4572-AD9E-101C31686AB4',
   570,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007600',
   '2015-02-07T00:38:00',
   'SACRAMENTO ST / UNIVERSITY AVE',
   'T',
   'OM3TCN',
   None,
   None],
  [571,
   '7A0C0AAC-DEF5-4644-A212-EB10ACCE88D9',
   571,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007603',
   '2015-02-07T00:49:00',
   'FULTON ST / HASTE ST',
   'T',
   'BM2TWS',
   None,
   None],
  [572,
   '49D1888E-52ED-43CC-A411-FBD1D325C16F',
   572,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007604',
   '2015-02-07T00:55:00',
   'SAN PABLO AVE / CARLETON ST',
   'T',
   'BM4TWN',
   None,
   None],
  [573,
   'AC01EA9D-4AA7-40AC-9E13-CE15CB94AA11',
   573,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007606',
   '2015-02-07T01:05:00',
   'SAN PABLO AVE / PARDEE ST',
   'T',
   'M',
   None,
   None],
  [574,
   'FB16CB22-7E1F-49DE-BF2F-F89BB87D56E8',
   574,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007607',
   '2015-02-07T01:18:00',
   'BANCROFT WAY / ELLSWORTH ST',
   'T',
   'M',
   None,
   None],
  [575,
   'F40A8B91-6C07-45EF-9237-37353D7CB40A',
   575,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007609',
   '2015-02-07T01:21:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'BM2TWN',
   None,
   None],
  [576,
   '828E80F0-A928-48C4-BB15-0C5BB9D349AA',
   576,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007612',
   '2015-02-07T01:47:00',
   '1200 BLOCK UNIVERSITY AVE',
   '1194',
   'M',
   None,
   None],
  [577,
   'A52FEA33-D94D-4224-B272-2F7E46B42044',
   577,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007613',
   '2015-02-07T01:47:00',
   'CALIFORNIA ST / PRINCE ST',
   'T',
   'BM3TWN',
   None,
   None],
  [578,
   '69E7AE6E-9823-4D84-8F5F-BF19E4751A73',
   578,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007615',
   '2015-02-07T02:07:00',
   'SAN PABLO AVE / PARDEE ST',
   'T',
   'M',
   None,
   None],
  [579,
   '48147A70-5030-4025-AF25-A7BA1AE1BA49',
   579,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007616',
   '2015-02-07T02:08:00',
   'FIFTH ST / BANCROFT WAY',
   'T',
   'BM3TCS',
   None,
   None],
  [580,
   '18E47109-9DA7-4862-B4D7-1900054D605C',
   580,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007649',
   '2015-02-07T09:33:00',
   'SACRAMENTO ST / OREGON ST',
   'T',
   'WM3TCN',
   None,
   None],
  [581,
   '86904199-E42C-4961-9882-DDC8F40B3BA6',
   581,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007652',
   '2015-02-07T09:52:00',
   '37.8604074730001~-122.299189454',
   'T',
   'WM3TWN',
   None,
   None],
  [582,
   '6C8F237F-7724-414C-BBC4-7B3CD2FC8D81',
   582,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007654',
   '2015-02-07T10:01:00',
   'SACRAMENTO ST / ALCATRAZ AVE',
   'T',
   'AF1KAS',
   None,
   None],
  [583,
   '24C6E197-45A5-437C-82DA-31DD67B02EEA',
   583,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007671',
   '2015-02-07T12:31:00',
   'TUNNEL/DOMINGO',
   'T',
   'WF2RWN',
   None,
   None],
  [584,
   'A4F04F6A-49CC-4C8F-87EC-7335E501FA99',
   584,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007691',
   '2015-02-07T14:15:00',
   'GRANT/BANC',
   'T',
   'WF4TCN',
   None,
   None],
  [585,
   '4AD40146-3D71-4D57-92CD-52D3E4E82E91',
   585,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007693',
   '2015-02-07T14:25:00',
   'CHILTON ALLEY',
   '1194',
   'BM2RWN',
   None,
   None],
  [586,
   '77F9C401-CC13-4898-ACA8-A7EA5588279A',
   586,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007701',
   '2015-02-07T14:47:00',
   'OHLONE PARK',
   '1194',
   'M',
   None,
   None],
  [587,
   '9D144F25-87E2-427C-8383-31CFBB8C68D5',
   587,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007704',
   '2015-02-07T15:18:00',
   'CEDAR ST / SHATTUCK AVE',
   'T',
   'WM4TCS, M',
   None,
   None],
  [588,
   '737A6E67-E9C1-420A-87A1-BD81CB097AF9',
   588,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007705',
   '2015-02-07T15:24:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [589,
   '9DAC9F9C-F1DB-494E-AD62-6CA9E18C2B25',
   589,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007709',
   '2015-02-07T16:01:00',
   'STANFORD AVE / SAN PABLO AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [590,
   'EFB86EF5-5DE7-495F-8317-0F7AEC068725',
   590,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007711',
   '2015-02-07T16:13:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'BM4RCS',
   None,
   None],
  [591,
   'D26DDB63-5F64-4B5E-8A54-F231F97CA073',
   591,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007715',
   '2015-02-07T16:35:00',
   '1600 BLOCK SAN PABLO AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [592,
   'DFE4A75E-5683-4264-9C09-800E8FF7534B',
   592,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007718',
   '2015-02-07T16:49:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RWN',
   None,
   None],
  [593,
   '41F15D86-A697-48C0-920B-A1B6A7D4E0C4',
   593,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007733',
   '2015-02-07T18:05:00',
   '1800 BLOCK SOLANO AVE',
   'T',
   'BM3TWN',
   None,
   None],
  [594,
   '57DAFEF0-F273-48B3-B4B7-2B608702EF8E',
   594,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007742',
   '2015-02-07T18:48:00',
   'ADDISON ST / BONAR ST',
   '1196',
   'WM4TWN',
   None,
   None],
  [595,
   '685654F5-7C99-423C-8B66-084DD793B1B9',
   595,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007749',
   '2015-02-07T19:37:00',
   'TELEGRAPH AVE / BLAKE ST',
   'T',
   'AM2TWN',
   None,
   None],
  [596,
   '909D7278-B5CD-4B79-9445-24393EE1C739',
   596,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007754',
   '2015-02-07T20:05:00',
   'HASKELL ST / MABEL ST',
   'T',
   'BM4TWN',
   None,
   None],
  [597,
   '059CA328-58A9-42C1-AB11-64F0092BE2D5',
   597,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007756',
   '2015-02-07T20:10:00',
   'SHATTUCK AVE / ESSEX ST',
   'T',
   'BM2TWN',
   None,
   None],
  [598,
   'D2F73157-ABFF-443A-AF9C-9D3825380B71',
   598,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007757',
   '2015-02-07T20:19:00',
   'CALIFORNIA ST / ADDISON ST',
   'T',
   'HM4TCS',
   None,
   None],
  [599,
   'E685C31E-2FED-4EB9-80D4-1442A72E409A',
   599,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007758',
   '2015-02-07T20:25:00',
   'ASHBY AVE / OTIS ST',
   'T',
   'BM3TWS',
   None,
   None],
  [600,
   '17B57339-48FC-4D7B-B339-2B8D7D3CBAF9',
   600,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007764',
   '2015-02-07T20:35:00',
   'UNIVERSITY AVE / EIGHTH ST',
   'T',
   'M',
   None,
   None],
  [601,
   '39116AE0-23F6-4D0D-8671-3C97FDF0EC25',
   601,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007767',
   '2015-02-07T20:53:00',
   'SAN PABLO AVE / BANCROFT WAY',
   'T',
   'BM4TWS',
   None,
   None],
  [602,
   '852DBE76-33D2-4431-A8C1-20CDC2FF0861',
   602,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007769',
   '2015-02-07T21:09:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   'T',
   'M',
   None,
   None],
  [603,
   '959B4C7A-28CC-41E2-92FA-E23BE4C67CD6',
   603,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007800',
   '2015-02-07T23:12:00',
   'DERBY ST / COLLEGE AVE',
   '1194',
   'BF2RCN',
   None,
   None],
  [605,
   '399F4AAB-E6EC-4149-9BD7-00966C641D4C',
   605,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007802',
   '2015-02-07T23:21:00',
   'DWIGHT WAY / GRANT ST',
   'T',
   'AM2TWN',
   None,
   None],
  [606,
   '7ECC0829-616F-4463-95F5-8A0354A31863',
   606,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007814',
   '2015-02-07T23:53:00',
   'SIXTY-FIFTH ST / HERZOG ST',
   'T',
   'BF2TWS',
   None,
   None],
  [607,
   'E5586D66-C684-4018-B28F-B186E22415E8',
   607,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007821',
   '2015-02-08T00:37:00',
   'VIRGINIA ST / MCGEE AVE',
   'T',
   'M',
   None,
   None],
  [608,
   'AAA5F61F-0B58-4E51-BBD5-6A4777D8A4D5',
   608,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007822',
   '2015-02-08T00:45:00',
   'ADDISON ST / NINTH ST',
   'T',
   'HM3TWS',
   None,
   None],
  [609,
   '7BD3FB6D-7957-41AD-8BB1-72500F9342CF',
   609,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007824',
   '2015-02-08T00:47:00',
   'TELEGRAPH AVE / WOOLSEY ST',
   '1196',
   'AM2TWN',
   None,
   None],
  [610,
   'B38E7364-5A50-479F-A944-0DD574035806',
   610,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007829',
   '2015-02-08T01:03:00',
   'MIV/DUR',
   '1196',
   'M',
   None,
   None],
  [611,
   '07F87D14-12A2-4714-BE42-1DD25DCBE94C',
   611,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007831',
   '2015-02-08T01:14:00',
   'SACRAMENTO ST / PRINCE ST',
   'T',
   'BF2TCN',
   None,
   None],
  [612,
   '54D3A507-80C1-4AFF-82E3-2A3E03177BE2',
   612,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007836',
   '2015-02-08T01:53:00',
   'SHATTUCK AVE / EMERSON ST',
   'T',
   'BM4TWN',
   None,
   None],
  [613,
   'C651FF2A-2DF9-4AEA-BBBB-F442FA8A47B2',
   613,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007838',
   '2015-02-08T02:02:00',
   '2500 BLOCK DURANT AVE',
   '1196',
   'TOW, WM3TCN',
   None,
   None],
  [614,
   '310A1FD6-08D9-444B-B0DE-F44B8F037CA4',
   614,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007845',
   '2015-02-08T03:25:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [615,
   'B2A5222E-7293-4846-90D7-91ADAAC19D9D',
   615,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007848',
   '2015-02-08T04:09:00',
   'KITTREDGE ST / FULTON ST',
   'T',
   'BM3TWN',
   None,
   None],
  [616,
   '1BF9BD4B-25E5-4DA2-A6D0-F857FB238420',
   616,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007905',
   '2015-02-08T14:03:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'M',
   None,
   None],
  [617,
   'E435165D-CCA6-41D7-A549-2F6AC28C2904',
   617,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007909',
   '2015-02-08T14:30:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [618,
   'EE882516-09FD-41FC-BA3C-BC79351A9D3B',
   618,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007912',
   '2015-02-08T14:45:00',
   '2200 BLOCK DWIGHT WAY',
   '1194',
   'P',
   None,
   None],
  [619,
   'BB9C6B5C-895D-41B1-95B1-F6996FCDEF0C',
   619,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007918',
   '2015-02-08T15:16:00',
   '2100 BLOCK M L KING JR WAY',
   '1194',
   'MH',
   None,
   None],
  [620,
   '1B1C71B9-EB4D-4E4B-B617-B422A3AFEC03',
   620,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007931',
   '2015-02-08T16:15:00',
   '1500 BLOCK SHATTUCK',
   '1194',
   'WM3RWS',
   None,
   None],
  [621,
   '9D956F97-9A3E-48C0-9734-CE303FCBA9BE',
   621,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007936',
   '2015-02-08T16:36:00',
   'ALLSTON WAY / HAROLD WAY',
   'T',
   'WM2TWN',
   None,
   None],
  [622,
   'FA339C48-476B-4175-9E55-A53A99043568',
   622,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007967',
   '2015-02-08T19:20:00',
   'ASHBY AVE / M L KING JR WAY',
   'T',
   'OF2TCN',
   None,
   None],
  [623,
   '3D2F80A5-A1C0-45DD-98B5-1BF61D9B7748',
   623,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007970',
   '2015-02-08T19:35:00',
   'ALLSTON WAY / SIXTH ST',
   'T',
   'M',
   None,
   None],
  [624,
   '99C0BB5D-C60D-4CB3-BA2A-69ED3A834A88',
   624,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007972',
   '2015-02-08T19:40:00',
   'ASHBY AVE / REGENT ST',
   'T',
   'BM4TCN',
   None,
   None],
  [625,
   '1329B91A-D99D-45AF-92BC-C6F717930C46',
   625,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007973',
   '2015-02-08T19:43:00',
   'SEVENTH ST / UNIVERSITY AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [626,
   '9BB3974E-B757-46ED-B0C3-069EB50E532A',
   626,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007976',
   '2015-02-08T20:06:00',
   'SAN PABLO AVE / HEINZ AVE',
   'T',
   'WF4TWN',
   None,
   None],
  [627,
   'D869570E-2FA1-429D-A675-CA3F6C5D5D5A',
   627,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007981',
   '2015-02-08T20:38:00',
   'TELEGRAPH AVE / DURANT AVE',
   'T',
   'WM4TWN',
   None,
   None],
  [628,
   '7FB3D318-C3E0-4DB4-BCDB-55655969CAD4',
   628,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007985',
   '2015-02-08T20:57:00',
   'TYLER ST / CALIFORNIA ST',
   'T',
   'BM4TWN',
   None,
   None],
  [629,
   'D0E9E517-148C-40E2-A688-15BEEEF68915',
   629,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007988',
   '2015-02-08T21:12:00',
   'MILVIA ST / DWIGHT WAY',
   'T',
   'WM4TWN',
   None,
   None],
  [630,
   '91BF5E8A-D4C0-4218-B574-BE483AC15CA0',
   630,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007990',
   '2015-02-08T21:16:00',
   '1100 BLOCK UNIVERSITY AVE',
   'T',
   'M',
   None,
   None],
  [631,
   '389C92DD-6C89-481E-948A-1D9CEE1023B7',
   631,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007993',
   '2015-02-08T21:33:00',
   '1800 BLOCK HEARST AVE',
   '1194B',
   'FC, BM4TWS',
   None,
   None],
  [632,
   '7CF874E0-4EF0-4CED-A5BF-FD1FA89F6F30',
   632,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00007997',
   '2015-02-08T21:57:00',
   'UNIVERSITY AVE / EIGHTH ST',
   'T',
   'M',
   None,
   None],
  [633,
   'C0ECB884-359E-4715-B434-391B22BAD03C',
   633,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008000',
   '2015-02-08T22:12:00',
   'TENTH ST / ADDISON ST',
   'T',
   'M',
   None,
   None],
  [634,
   'AFDB1E35-8D22-47D4-9F5A-C6CBCE6265B2',
   634,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008002',
   '2015-02-08T22:20:00',
   '80 BLOCK BOLIVAR DR',
   '1196',
   'M',
   None,
   None],
  [695,
   '6B60E540-F383-4079-8F84-70293C409F13',
   695,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008237',
   '2015-02-09T23:49:00',
   '2500 BLOCK DURANT AVE',
   '1194',
   'M',
   None,
   None],
  [635,
   '2E363BB5-EC22-4698-8146-A818A0A50FE6',
   635,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008003',
   '2015-02-08T22:22:00',
   'SAN PABLO AVE / CARLETON ST',
   'T',
   'BF2TWN',
   None,
   None],
  [1608,
   '4562E65E-1510-40C9-BF99-FE35F17A4231',
   1608,
   1444146411,
   '932858',
   1444146411,
   '932858',
   None,
   '2015-00013226',
   '2015-03-05T13:21:00',
   'UNI/6TH',
   'T',
   'WF4TCN',
   None,
   None],
  [636,
   '54E46FAF-0F84-49CA-89F8-E8071070AFBB',
   636,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008005',
   '2015-02-08T22:32:00',
   'SAN PABLO AVE / DELAWARE ST',
   '1194',
   'M',
   None,
   None],
  [637,
   '7A26705B-73D2-45EB-80BF-3C4181875D58',
   637,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008007',
   '2015-02-08T22:45:00',
   'SHATTUCK AVE / ASHBY AVE',
   'T',
   'BM3TWS',
   None,
   None],
  [638,
   '01103D8C-8486-4FC6-90F0-A73E9C311CC7',
   638,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008008',
   '2015-02-08T22:48:00',
   'GILMAN ST / EASTSHORE HWY',
   'T',
   'WF2TCN',
   None,
   None],
  [639,
   'EE6B16ED-E3DD-4EE6-8C5D-442BAC4CF2DA',
   639,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008013',
   '2015-02-08T23:37:00',
   '37.8701556196371~-122.273228045068',
   '1194',
   'P',
   None,
   None],
  [640,
   'FECA5B90-F23C-427D-902B-DDC66C787932',
   640,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008018',
   '2015-02-09T01:01:00',
   'UNIVERSITY AVE / SACRAMENTO ST',
   'T',
   'WF3TCN',
   None,
   None],
  [641,
   'F406A53E-7328-4F93-9992-8E7852B58703',
   641,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008021',
   '2015-02-09T01:43:00',
   'UNIVERSITY AVE / CURTIS ST',
   'T',
   'M',
   None,
   None],
  [642,
   '8F0F0EB3-67A5-4B25-B9FC-D9CAEB963E21',
   642,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008022',
   '2015-02-09T01:53:00',
   'HEINZ AVE / SAN PABLO AVE',
   'T',
   'OF3TCS',
   None,
   None],
  [643,
   'BABB5532-A362-438A-B454-32D38953E074',
   643,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008023',
   '2015-02-09T02:14:00',
   'UNIVERSITY AVE / SACRAMENTO ST',
   'T',
   'OM2TWN',
   None,
   None],
  [644,
   'D020FC21-666B-421A-A3B8-E7D3B1785D90',
   644,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008024',
   '2015-02-09T02:22:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'TOW, WF3TCS, M',
   None,
   None],
  [645,
   '9723227F-CF62-4358-BE6E-E65587BAD5D2',
   645,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008027',
   '2015-02-09T02:45:00',
   '2500 BLOCK BENVENUE AVE',
   '1194',
   'BM4IWN',
   None,
   None],
  [646,
   '9F6AFF55-0696-4B93-924B-573EDC692299',
   646,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008028',
   '2015-02-09T03:10:00',
   'SHATTUCK AVE / BANCROFT WAY',
   '1194B',
   '0',
   None,
   None],
  [647,
   'D10A2A21-8EED-4CA8-9587-788D131E364E',
   647,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008030',
   '2015-02-09T04:49:00',
   'M L KING JR WAY/60TH',
   'T',
   'BF2TWN',
   None,
   None],
  [648,
   '0745E3C9-9F8D-4528-96D0-D26BBDD99D9B',
   648,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008048',
   '2015-02-09T08:08:00',
   '2200 BLOCK OREGON ST',
   'T',
   'OM4TCN',
   None,
   None],
  [649,
   '46AB8AEC-85EF-4A15-9E4B-733F568671E8',
   649,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008056',
   '2015-02-09T09:13:00',
   'SHATTUCK AVE / ALLSTON WAY',
   '1194B',
   'BM2TWN',
   None,
   None],
  [650,
   'A8315FE8-DB1D-4F02-B83A-9667834ADA57',
   650,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008058',
   '2015-02-09T09:16:00',
   '3100 BLOCK TELEGRAPH AVE',
   '1194',
   'BM4KOS',
   None,
   None],
  [651,
   '31427006-8DDD-47C6-9FF4-0876F681B2A6',
   651,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008061',
   '2015-02-09T09:47:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'WM2KWS',
   None,
   None],
  [652,
   '8650E993-7FA7-4041-93FB-F64F801E08E2',
   652,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008065',
   '2015-02-09T09:58:00',
   'OXFORD ST / ALLSTON WAY',
   'T',
   'OF1KON',
   None,
   None],
  [653,
   '768602F0-93E6-402A-AF2C-1ABD4C4251CE',
   653,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008066',
   '2015-02-09T10:07:00',
   'MILVIA ST / UNIVERSITY AVE',
   'T',
   'AF2RCN',
   None,
   None],
  [654,
   '9D9CAEA5-C578-409B-A131-D05489BC4648',
   654,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008070',
   '2015-02-09T10:26:00',
   'SACRAMENTO ST / DELAWARE ST',
   'T',
   'WM4TCN',
   None,
   None],
  [655,
   'A8367967-E3B0-4193-A7E0-0883AC01E98C',
   655,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008071',
   '2015-02-09T10:29:00',
   'HEARST AVE / SACRAMENTO ST',
   'T',
   'WF1IAN',
   None,
   None],
  [656,
   'DFAAFA6B-55C5-4C8E-A5B4-993D1FECA502',
   656,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008073',
   '2015-02-09T10:38:00',
   'HEARST AVE / MCGEE AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [657,
   '61E78843-EE29-40DF-9A29-97BABBB4D92E',
   657,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008074',
   '2015-02-09T10:41:00',
   'HOPKINS ST / ACTON ST',
   'T',
   'WF3TWN, M',
   None,
   None],
  [658,
   '8ED386BF-475D-429E-8277-9DC25F66C1EC',
   658,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008076',
   '2015-02-09T10:52:00',
   'SAN PABLO AVE / UNIVERSITY AVE',
   'T',
   'BM4TWN',
   None,
   None],
  [659,
   'CDD5F547-3F91-44F7-B06C-22B7C46A179F',
   659,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008077',
   '2015-02-09T10:53:00',
   'WOOLSEY ST / BATEMAN ST',
   'T',
   'WM4TWN',
   None,
   None],
  [660,
   '375FFFF8-775A-453E-B803-A2E9BB29E021',
   660,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008078',
   '2015-02-09T11:03:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'HM2TCN',
   None,
   None],
  [661,
   '5A738C93-C735-4E36-B6C1-E543324AB233',
   661,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008083',
   '2015-02-09T11:12:00',
   '37.879672853~-122.307296201',
   'T',
   'BM4TCN',
   None,
   None],
  [662,
   '0B78AC84-9019-4638-862A-8D037ECF2615',
   662,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008092',
   '2015-02-09T11:46:00',
   'SHATTUCK AVE / CHANNING WAY',
   'T',
   'WF4TCN',
   None,
   None],
  [663,
   '38D08B89-CAA5-4B86-9347-CE2AA0D0F2C0',
   663,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008100',
   '2015-02-09T12:05:00',
   'KITTREDGE ST / MILVIA ST',
   'T',
   'AM2TCN',
   None,
   None],
  [664,
   'D39F0159-274E-4F1F-A235-74370F98DCD7',
   664,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008107',
   '2015-02-09T12:32:00',
   'UNIVERSITY AVE / M L KING JR WAY',
   'T',
   'BM3TCN',
   None,
   None],
  [665,
   '34474123-0FB7-462A-B4C2-AF41E7D9A122',
   665,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008110',
   '2015-02-09T12:55:00',
   'SIXTY-SEVENTH ST / HOLLIS ST',
   'T',
   'WF2TWN',
   None,
   None],
  [666,
   '21EBE1F5-F755-4371-B202-90CBA04D0AFA',
   666,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008114',
   '2015-02-09T13:10:00',
   'KITTREDGE ST / SHATTUCK AVE',
   '1194',
   'OM4RWN',
   None,
   None],
  [667,
   '82796406-C522-44B7-9D33-5467A4EBD7C6',
   667,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008117',
   '2015-02-09T13:21:00',
   'M L KING JR WAY / ASHBY AVE',
   'T',
   'BF4TCN',
   None,
   None],
  [668,
   '7997ABAB-BB11-4D5E-B0D5-135E808B89DD',
   668,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008119',
   '2015-02-09T13:31:00',
   '2500 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [669,
   '99B900D8-7167-402F-A89F-4DE6861F26D9',
   669,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008120',
   '2015-02-09T13:53:00',
   'SEVENTH ST / FOLGER AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [670,
   '970A3DEE-BADE-46E1-AEB8-717A50CB20FE',
   670,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008125',
   '2015-02-09T14:15:00',
   '1200 BLOCK ASHBY AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [671,
   'ACAC0F76-5A29-495B-8F17-30ED408DD608',
   671,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008127',
   '2015-02-09T14:28:00',
   '1200 BLOCK ASHBY AVE',
   'T',
   'AM3TCN',
   None,
   None],
  [672,
   '266A89C1-57FA-456B-97C4-10A527437977',
   672,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008130',
   '2015-02-09T14:39:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'BM3TCN',
   None,
   None],
  [673,
   '5299E582-9094-4C7A-AFB7-0E76F373A3CB',
   673,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008134',
   '2015-02-09T14:55:00',
   'ACTON ST / DELAWARE ST',
   'T',
   'OM4TCN',
   None,
   None],
  [674,
   '6311E679-7173-49EA-94C9-5713C97914DE',
   674,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008140',
   '2015-02-09T15:16:00',
   'BERKELEY WAY / ACTON ST',
   'T',
   'WM2TCN',
   None,
   None],
  [675,
   '5FAEB68A-6719-4459-9500-DC42128898F7',
   675,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008142',
   '2015-02-09T15:25:00',
   'W FRONTAGE RD / GILMAN ST',
   'T',
   'OM4TCN',
   None,
   None],
  [676,
   '5CB39A22-B3AE-4B3E-85A4-BB045DE09CF7',
   676,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008144',
   '2015-02-09T15:31:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'AF3WWS',
   None,
   None],
  [677,
   'B769DD43-7F6E-40CD-BAC3-955F98DB2852',
   677,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008147',
   '2015-02-09T15:42:00',
   '37.8711851492295~-122.304708319403',
   'T',
   'AF2WON',
   None,
   None],
  [678,
   'D9EAA645-91B3-4A60-8EBD-6CDFF42C5EAE',
   678,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008152',
   '2015-02-09T16:19:00',
   'DURANT AVE / ELLSWORTH ST',
   'T',
   'WF4TWN',
   None,
   None],
  [679,
   '7C718C57-1856-40B6-8FB5-2A2BC98C6977',
   679,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008157',
   '2015-02-09T16:51:00',
   'MILVIA ST / DURANT AVE',
   'T',
   'HF3TCN',
   None,
   None],
  [680,
   '2D087B6A-B1D4-4529-AF75-D275E75B1CCB',
   680,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008165',
   '2015-02-09T17:22:00',
   'SACRAMENTO ST / CARLETON ST',
   'T',
   'AF2TWN',
   None,
   None],
  [681,
   '09575A51-F902-443C-A48D-884435FC60E2',
   681,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008167',
   '2015-02-09T17:31:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'AR, WM4RCS',
   None,
   None],
  [682,
   '0975667E-7452-459C-AF5B-6AA1E7941F06',
   682,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008169',
   '2015-02-09T17:33:00',
   'DURANT AVE / SHATTUCK AVE',
   'T',
   'BM4TCN',
   None,
   None],
  [683,
   '31F13D1C-77FF-42B5-8F8C-65F4A182B3DE',
   683,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008171',
   '2015-02-09T17:40:00',
   'DELAWARE ST / CURTIS ST',
   '1194',
   'BM3RWS',
   None,
   None],
  [684,
   'B4AE1990-9B11-4689-A2A6-F419C97CC62F',
   684,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008206',
   '2015-02-09T21:17:00',
   'CHANNING WAY / M L KING JR WAY',
   'T',
   'BF4TWN',
   None,
   None],
  [685,
   '794823C5-1941-4B74-8B13-5CE74DCEB325',
   685,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008207',
   '2015-02-09T21:31:00',
   'CHANNING WAY / DANA ST',
   'T',
   'OM2TCN',
   None,
   None],
  [686,
   'ED306E5C-91E7-40BD-85F9-9A63E00FBF86',
   686,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008209',
   '2015-02-09T21:44:00',
   'TELEGRAPH AVE / DWIGHT WAY',
   '1194',
   'WM2KWS',
   None,
   None],
  [687,
   'C79DD484-DFF8-4B4D-863F-A92168FE7D09',
   687,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008213',
   '2015-02-09T22:02:00',
   'MILVIA ST / UNIVERSITY AVE',
   '1194',
   'AR',
   None,
   None],
  [688,
   'B3E3947B-C70D-491D-AB8B-62165D3A3E38',
   688,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008216',
   '2015-02-09T22:07:00',
   '2500 BLOCK HILLEGASS AVE',
   '1194',
   'M',
   None,
   None],
  [689,
   '6125BFD1-159A-4ED7-9996-B6E54EB8DA35',
   689,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008217',
   '2015-02-09T22:15:00',
   '2500 BLOCK TELEGRAPH AVE',
   '1194',
   'WM3IWN',
   None,
   None],
  [690,
   '4CAE4950-F794-40C1-9C77-3259C0B159CD',
   690,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008219',
   '2015-02-09T22:22:00',
   'TELEGRAPH AVE / OREGON ST',
   'T',
   'WF3TCN',
   None,
   None],
  [691,
   '055E2AB2-A885-4443-A859-D657916D36BF',
   691,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008221',
   '2015-02-09T22:27:00',
   '1400 BLOCK SHATTUCK AVE',
   '1194',
   'BM4ICN, BM4IAS',
   None,
   None],
  [692,
   'C4AFF132-D117-4432-B46A-7FB1C86DC8B5',
   692,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008227',
   '2015-02-09T22:50:00',
   'DWIGHT WAY / COLLEGE AVE',
   'T',
   'HF2TCN',
   None,
   None],
  [693,
   '14799F26-6C03-422B-BA0B-421D78A2CA2A',
   693,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008228',
   '2015-02-09T22:59:00',
   'UNIVERSITY AVE / BONAR ST',
   '1194B',
   'BM2TCS, M',
   None,
   None],
  [694,
   '73C96D00-3F2B-4B93-B668-B8977DCF3ACA',
   694,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008234',
   '2015-02-09T23:38:00',
   'SHATTUCK AVE / CARLETON ST',
   '1194',
   'WM4RWN, M',
   None,
   None],
  [696,
   '5952B319-FBB1-430E-AB47-131A13D748AA',
   696,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008240',
   '2015-02-10T00:00:00',
   'SAN PABLO AVE / CAMELIA ST',
   'T',
   'BM2TCS, M',
   None,
   None],
  [697,
   'FD5DC4DC-EC0E-451C-BDE3-B421FD61DA2F',
   697,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008241',
   '2015-02-10T00:02:00',
   'FAIRVIEW ST / CALIFORNIA ST',
   'T',
   'BM4TCN',
   None,
   None],
  [698,
   '94C0E6FB-CEEF-4B20-A371-864C5B8F82DB',
   698,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008247',
   '2015-02-10T00:40:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   '1194B',
   'P',
   None,
   None],
  [699,
   'FD325F8B-6231-4FFB-AA73-23FAF0BED538',
   699,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008250',
   '2015-02-10T01:24:00',
   'MARIN AVE / CRAGMONT AVE',
   'T',
   'OM2TWN',
   None,
   None],
  [700,
   '5D985BCE-7064-4F9D-B14E-762B0986401F',
   700,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008251',
   '2015-02-10T01:30:00',
   'BANCROFT WAY/ PIEDMONT ST',
   'T',
   'WM4WWN',
   None,
   None],
  [701,
   '3A049E0D-EA5A-403E-8FB4-5D51181ABE87',
   701,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008261',
   '2015-02-10T05:23:00',
   '1300 BLOCK UNIVERSITY AVE',
   'T',
   'BM4TWN',
   None,
   None],
  [702,
   '9E5EFE21-9626-4FF3-9563-79D9405C9E92',
   702,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008265',
   '2015-02-10T07:04:00',
   '1800 BLOCK UNIVERSITY AVE',
   '1194',
   'WM3RCN',
   None,
   None],
  [703,
   '5B2A1BFD-E857-4ED3-B892-9975D2B83208',
   703,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008266',
   '2015-02-10T07:07:00',
   'M L KING JR WAY / PRINCE ST',
   'T',
   'HF2TCN',
   None,
   None],
  [704,
   '1E9A8DB7-4F32-4B23-81F5-9C1FF17E7DE2',
   704,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008271',
   '2015-02-10T07:30:00',
   'M L KING JR WAY / WOOLSEY ST',
   'T',
   'BM2TCN',
   None,
   None],
  [705,
   '5CCE394B-14A1-4D55-B3F9-C7300D02482A',
   705,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008272',
   '2015-02-10T07:30:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'OM4TCN',
   None,
   None],
  [706,
   '9503DED4-7B66-4AB3-964D-A5EC8EEDDE01',
   706,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008274',
   '2015-02-10T07:44:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WM3TCN',
   None,
   None],
  [707,
   '8DF7D9A6-2987-439D-AF98-6A862539E219',
   707,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008275',
   '2015-02-10T07:45:00',
   'M L KING JR WAY / ASHBY AVE',
   'T',
   'AF3TCN',
   None,
   None],
  [708,
   '4A733E57-D5F0-4A14-A23F-F66889833D7B',
   708,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008277',
   '2015-02-10T07:54:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WM4TCN',
   None,
   None],
  [709,
   '331FA6DE-0A4F-4FA6-93E3-A050DD176BBF',
   709,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008279',
   '2015-02-10T08:00:00',
   'M L KING JR WAY / HASTE ST',
   'T',
   'BF3TCN',
   None,
   None],
  [710,
   '5D1EB082-AA2C-4407-A90C-5BC9A32B3333',
   710,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008282',
   '2015-02-10T08:13:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WF3TCN',
   None,
   None],
  [711,
   '823387B5-C1B4-42D8-92CD-786F26158DB4',
   711,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008284',
   '2015-02-10T08:18:00',
   'M L KING JR WAY / WARD ST',
   'T',
   'WM3TCN',
   None,
   None],
  [712,
   '308D7FCA-A5FC-4397-BFB3-8B0F539CF81E',
   712,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008285',
   '2015-02-10T08:22:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'WF3TCN',
   None,
   None],
  [713,
   '1780A55F-4896-4441-9A72-104BD462B482',
   713,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008287',
   '2015-02-10T08:31:00',
   'PRINCE ST / WHEELER ST',
   '1194',
   'BM3RCN, M',
   None,
   None],
  [714,
   'CBFFD377-2A88-4439-B6E8-2CEB5102E3FD',
   714,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008290',
   '2015-02-10T08:38:00',
   'ALCATRAZ AVE / ADELINE ST',
   'T',
   'WM2TCN',
   None,
   None],
  [715,
   '5B8EC58A-CF60-465B-9946-490FD7D94AC8',
   715,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008291',
   '2015-02-10T08:39:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   'T',
   'WM3TCN',
   None,
   None],
  [716,
   '353227A4-D6DC-4AFB-AD56-433DA6FDDF50',
   716,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008296',
   '2015-02-10T08:56:00',
   'BANCROFT WAY / BARROWS LN',
   'T',
   'WF2TCN',
   None,
   None],
  [717,
   'C9044BE0-4325-4521-A2C9-9C9630A4548E',
   717,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008297',
   '2015-02-10T08:58:00',
   'SHATTUCK AVE / BANCROFT WAY',
   'T',
   'BF3TCN',
   None,
   None],
  [718,
   'FA372C2A-68C8-4816-BC4F-6A6582425A07',
   718,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008298',
   '2015-02-10T08:59:00',
   'BOWDITCH ST / DURANT AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [719,
   'CEA56424-4C1D-4AE5-BDE9-0552AA0149F4',
   719,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008302',
   '2015-02-10T09:16:00',
   'BANCROFT WAY / BARROWS LN',
   'T',
   'OM2TCN',
   None,
   None],
  [720,
   '93AA00F0-7800-42E3-8906-9DE06412E85E',
   720,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008304',
   '2015-02-10T09:26:00',
   'BANCROFT WAY / BOWDITCH ST',
   '1194B',
   'AM2TCN',
   None,
   None],
  [721,
   '18BBE094-FE49-4002-9917-FE7B20C38EAE',
   721,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008305',
   '2015-02-10T09:27:00',
   'CHANNING WAY / SHATTUCK AVE',
   'T',
   'WF4TCN',
   None,
   None],
  [722,
   '1EB3222F-3C4F-4169-BE14-470967902826',
   722,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008306',
   '2015-02-10T09:34:00',
   'BANCROFT WAY / BOWDITCH ST',
   'T',
   'WM4TCN',
   None,
   None],
  [723,
   'C9D6D919-A918-471D-842D-1A2F81F5559B',
   723,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008307',
   '2015-02-10T09:34:00',
   'SHATTUCK AVE / BANCROFT WAY',
   'T',
   'BF3TCN',
   None,
   None],
  [724,
   '556C69B4-17AC-47A1-8262-0D18E6A7C453',
   724,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008310',
   '2015-02-10T09:41:00',
   'MILVIA ST / DWIGHT WAY',
   '1194B',
   'BM4TCN',
   None,
   None],
  [725,
   '6E16A7BC-CA70-4F67-A571-8DF0A6BFEF00',
   725,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008311',
   '2015-02-10T09:43:00',
   '2700 BLOCK COLLEGE AVE',
   '1194',
   'M',
   None,
   None],
  [726,
   'D63713F7-2E4F-4163-BAED-0C17B0A51E9D',
   726,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008313',
   '2015-02-10T09:48:00',
   'BANCROFT WAY / TELEGRAPH AVE',
   'T',
   'OM3TCN',
   None,
   None],
  [727,
   '96062341-9390-4BA1-A892-7F79C2341FAD',
   727,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008314',
   '2015-02-10T09:50:00',
   'UNIVERSITY AVE / WALNUT ST',
   'T',
   'WM2TCN',
   None,
   None],
  [728,
   '85363AA6-9964-4D82-8B00-F9250E3CC2E3',
   728,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008316',
   '2015-02-10T09:51:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'HM2TCN',
   None,
   None],
  [729,
   '98EA9342-64C1-4A40-B278-8BA8EFCB5BE0',
   729,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008318',
   '2015-02-10T10:07:00',
   'DERBY ST / WARRING ST',
   'T',
   'WM4TCN',
   None,
   None],
  [730,
   '7F7F9A2A-144C-4E7E-B8E4-90AEABB74141',
   730,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008319',
   '2015-02-10T10:09:00',
   '2600 BLOCK COLLEGE AVE',
   'T',
   'AM2TCN',
   None,
   None],
  [731,
   '6BF27A94-B421-4A9E-A113-88360688163D',
   731,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008321',
   '2015-02-10T10:11:00',
   'UNIVERSITY AVE / W FRONTAGE RD',
   'T',
   'BM2TCN',
   None,
   None],
  [732,
   '6EE99C12-9895-4ECE-B6D9-516A27F755B2',
   732,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008324',
   '2015-02-10T10:19:00',
   'BELROSE AVE / DERBY ST',
   'T',
   'WM4TCN',
   None,
   None],
  [733,
   '6925EB18-827C-4A31-9C89-0CB285F895F2',
   733,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008336',
   '2015-02-10T11:44:00',
   'UNIVERSITY AVE / ACTON ST',
   'T',
   'WM2TCN',
   None,
   None],
  [734,
   '18083386-0D06-4B11-B3E8-D9812FA82D78',
   734,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008337',
   '2015-02-10T11:49:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WF2RCN',
   None,
   None],
  [735,
   '433D7C2E-873D-44EF-8C3E-39532CA38FBC',
   735,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008338',
   '2015-02-10T11:58:00',
   'UNIVERSITY AVE / ACTON ST',
   'T',
   'WM3TCN',
   None,
   None],
  [736,
   'F1BDA5F4-183A-4C5E-9B40-ACF9EB084454',
   736,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008342',
   '2015-02-10T12:06:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'M',
   None,
   None],
  [737,
   '6E5A436F-FC49-493F-B8FA-F1E03FA99C91',
   737,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008343',
   '2015-02-10T12:08:00',
   '1600 BLOCK ASHBY AVE',
   '1194',
   'FC, BF4RWN',
   None,
   None],
  [738,
   '80BD48AD-32DF-45ED-8214-62FED0327617',
   738,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008347',
   '2015-02-10T12:20:00',
   'SIXTH ST / UNIVERSITY AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [739,
   '8C35E928-00BA-4FED-B2D7-A53669ED1CB0',
   739,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008349',
   '2015-02-10T12:28:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WF4RAS',
   None,
   None],
  [740,
   '69FCB800-06F6-428E-B9E2-581C7F16835B',
   740,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008355',
   '2015-02-10T12:40:00',
   '37.8494135490001~-122.298472239',
   'T',
   'BM2RWS',
   None,
   None],
  [741,
   '72018959-95D8-4643-A9EE-5B2A91836537',
   741,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008376',
   '2015-02-10T14:01:00',
   'UNIVERSITY AVE / ACTON ST',
   'T',
   'OF3TCN',
   None,
   None],
  [742,
   'E8DFC589-A08A-4DCE-887D-48DF8C80F283',
   742,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008377',
   '2015-02-10T14:08:00',
   'BANCROFT WAY / ELLSWORTH ST',
   '1194',
   'IN, WM4KAS',
   None,
   None],
  [743,
   'A1A422A5-7C13-4BF5-8200-3083330A5E8F',
   743,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008386',
   '2015-02-10T14:47:00',
   '54TH ST / ADELINE ST',
   '1196',
   'M',
   None,
   None],
  [744,
   '7A8958BC-105C-4851-83CF-40BA718654AE',
   744,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008392',
   '2015-02-10T15:10:00',
   'SPR/SANTA BAR',
   'T',
   'WM2TCN',
   None,
   None],
  [745,
   'CB8EA22E-22BE-4849-9CFB-E3B364C56EF9',
   745,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008394',
   '2015-02-10T15:26:00',
   'SEVENTH ST / CHANNING WAY',
   '1194',
   'M',
   None,
   None],
  [746,
   'ABAA6C57-C6CF-4D46-A460-71751E634A6D',
   746,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008397',
   '2015-02-10T15:38:00',
   '4TH/BANC',
   '1196',
   'M',
   None,
   None],
  [747,
   '2F274AC9-2289-42E7-A1EE-EA51ACECEB09',
   747,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008398',
   '2015-02-10T15:47:00',
   'UNIV/SAC',
   'T',
   'AF1IOS',
   None,
   None],
  [748,
   '1049639B-C647-4E50-8510-A71CB285E586',
   748,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008406',
   '2015-02-10T16:16:00',
   'SHATT/HASTE',
   'T',
   'BF2TCN',
   None,
   None],
  [749,
   'E3E4D71F-1898-4C3F-95C9-1DF3F5BCA4C1',
   749,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008412',
   '2015-02-10T16:39:00',
   'BANCROFT WAY / FULTON ST',
   '1194B',
   'AM2TCN',
   None,
   None],
  [750,
   '318AFDC3-0A5F-4E8F-A859-9508C07BC042',
   750,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008417',
   '2015-02-10T16:54:00',
   '55TH/MLK',
   'T',
   'M',
   None,
   None],
  [751,
   '733BBA67-3803-4904-A632-0A5215D59ABF',
   751,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008440',
   '2015-02-10T19:02:00',
   '55TH / TELE',
   '1196',
   'M',
   None,
   None],
  [752,
   '1DE4DACF-097E-4D3F-8008-0690ABD05E1D',
   752,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008446',
   '2015-02-10T19:58:00',
   'DWIGHT WAY / ROOSEVELT AVE',
   '1196',
   'M',
   None,
   None],
  [753,
   '1E31AC45-6230-4855-9B3D-44C406732728',
   753,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008447',
   '2015-02-10T20:34:00',
   'SAN P/CHAUCE',
   'T',
   'AF3TWN',
   None,
   None],
  [754,
   'A126EC36-197F-4B53-8619-6BFC8E5D2194',
   754,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008461',
   '2015-02-10T22:05:00',
   'UNI/8TH',
   'T',
   'WM4TCN',
   None,
   None],
  [755,
   '6C5C509B-CDEA-4066-BAA4-F935DC1B1293',
   755,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008463',
   '2015-02-10T22:22:00',
   'CHANNING WAY / BROWNING ST',
   '1194',
   'WM2TWN',
   None,
   None],
  [756,
   '5E3B8028-B380-4BB8-A8FA-33FB7B1E8B0B',
   756,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008465',
   '2015-02-10T22:38:00',
   'SACRAMENTO ST / RUSSELL ST',
   'T',
   'WM2TCN',
   None,
   None],
  [757,
   '57157A50-5727-4075-A8AB-4F089639F66C',
   757,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008467',
   '2015-02-10T22:47:00',
   'BOWDITCH ST / CHANNING WAY',
   'T',
   'M',
   None,
   None],
  [758,
   '28165180-579A-4F72-A66B-B8A48477B236',
   758,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008470',
   '2015-02-10T23:02:00',
   'MCGEE AVE / BERKELEY WAY',
   'T',
   'BM3TWN',
   None,
   None],
  [759,
   'A74A9A18-A52B-4D47-A9B8-5168F5BAFE46',
   759,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008473',
   '2015-02-10T23:22:00',
   'TENTH ST / HEARST AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [760,
   '49C65C5E-8419-48BB-8696-5076ACF7054F',
   760,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008489',
   '2015-02-11T01:12:00',
   'SAN PABLO AVE / 59TH ST',
   'T',
   'WF2TWN',
   None,
   None],
  [761,
   '8E480C5E-0AB5-4FE9-ABFE-25B377085A66',
   761,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008490',
   '2015-02-11T01:25:00',
   'SAN PABLO AVE / ALCATRAZ AVE',
   'T',
   'P',
   None,
   None],
  [762,
   '28F76E5C-FA59-475A-B27E-1528673B1EE4',
   762,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008497',
   '2015-02-11T03:35:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'M',
   None,
   None],
  [763,
   '486C5A94-853D-450A-8044-883D3DF404A4',
   763,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008501',
   '2015-02-11T06:17:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'WM4TWN',
   None,
   None],
  [764,
   '3E4EE8A7-3655-4831-A63F-75D234F9BF44',
   764,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008509',
   '2015-02-11T07:00:00',
   'PARKER ST / SHATTUCK AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [765,
   '1E7D6B4F-438E-4059-AF07-A150D13A743C',
   765,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008513',
   '2015-02-11T07:43:00',
   'ASHBY AVE / SAN PABLO AVE',
   'T',
   'HF3TCN',
   None,
   None],
  [766,
   '90732AC9-FCC0-487D-91E7-15CB42ABEA07',
   766,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008518',
   '2015-02-11T08:08:00',
   'PARKER ST / MILVIA ST',
   'T',
   'BF3TCN',
   None,
   None],
  [767,
   '931750F4-D03B-4063-B7AA-88CA057AE0FC',
   767,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008521',
   '2015-02-11T08:27:00',
   'M L KING JR WAY / PRINCE ST',
   'T',
   'AF2TCN',
   None,
   None],
  [768,
   'D9F975C2-7A80-411C-B1CE-5011F761E12E',
   768,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008523',
   '2015-02-11T08:41:00',
   '3100 BLOCK ADELINE ST',
   'T',
   'OM3TCN',
   None,
   None],
  [769,
   '69FBB54B-0B3A-4724-B49A-CEF995EBD608',
   769,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008548',
   '2015-02-11T11:19:00',
   'SIXTH ST / BANCROFT WAY',
   'T',
   'WM4TCN',
   None,
   None],
  [770,
   '917AC3DA-B42F-43FE-9E73-21883600CAA5',
   770,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008555',
   '2015-02-11T11:38:00',
   'FIFTH ST / ADDISON ST',
   'T',
   'AF1ICS',
   None,
   None],
  [771,
   '0D332935-A641-46C0-B0C0-5831D8C820C9',
   771,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008560',
   '2015-02-11T11:51:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM3RCN',
   None,
   None],
  [772,
   '4E616158-0785-437B-B544-CE7FC12FB47F',
   772,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008567',
   '2015-02-11T12:13:00',
   'ASHBY AVE / ADELINE ST',
   'T',
   'WM3TCN',
   None,
   None],
  [773,
   '2B505426-4E57-4A4A-ADDA-A9DBC7643FC2',
   773,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008568',
   '2015-02-11T12:24:00',
   'REGENT ST / ASHBY AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [774,
   'B2E4E9D3-E9B7-4E9D-8BFC-523F914F4164',
   774,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008570',
   '2015-02-11T12:40:00',
   'DERBY ST / WARRING ST',
   'T',
   'WM4TCN',
   None,
   None],
  [775,
   '76EDE1E7-45C5-47FF-89D2-D3B4914E4076',
   775,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008573',
   '2015-02-11T12:49:00',
   'WARRING ST / PARKER ST',
   'T',
   'HF4TCN',
   None,
   None],
  [776,
   '4ABC775F-C1AF-4578-B634-C8FDDEE2AADC',
   776,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008576',
   '2015-02-11T12:57:00',
   '2600 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [777,
   '2E2C2950-D239-4D73-987A-3C22B239BDAA',
   777,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008581',
   '2015-02-11T13:04:00',
   'MELROSE/FOREST',
   'T',
   'WM4TCN',
   None,
   None],
  [778,
   '5B2EA589-FA3C-454B-A0CA-1543FA323BBB',
   778,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008585',
   '2015-02-11T13:12:00',
   'CLAREMONT BLVD / DERBY ST',
   'T',
   'WF4TCN',
   None,
   None],
  [779,
   'B86BED20-EFD3-4762-A31C-651EEEA0EB5E',
   779,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008591',
   '2015-02-11T13:44:00',
   'CEDAR ST / CALIFORNIA ST',
   'T',
   'WF3TWN',
   None,
   None],
  [780,
   'F8E73CE8-8E74-4292-9281-E227B29E7CFE',
   780,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008593',
   '2015-02-11T13:55:00',
   'CEDAR ST / SACRAMENTO ST',
   'T',
   'WM4TWN',
   None,
   None],
  [781,
   'A4EE0AD9-0035-4A65-B55A-AA8958A3D71A',
   781,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008598',
   '2015-02-11T14:05:00',
   'M L KING JR WAY / CEDAR ST',
   'T',
   'WM2TWN',
   None,
   None],
  [782,
   'F51C506A-202E-49CC-8C27-342DEA5E1FED',
   782,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008603',
   '2015-02-11T14:42:00',
   'ASHBY AVE / COLBY ST',
   'T',
   'WF4TWN',
   None,
   None],
  [783,
   '1C29AC9D-4708-479B-872A-0C1AD6F8DEAF',
   783,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008605',
   '2015-02-11T14:47:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'IN',
   None,
   None],
  [784,
   '7D2184FE-F1C2-4A89-8A21-BBA42ADD55DA',
   784,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008608',
   '2015-02-11T15:05:00',
   '2900 BLOCK OTIS ST',
   '1194B',
   'M',
   None,
   None],
  [785,
   'A3DCBF81-6D08-418A-88DA-7CCFF853F1A1',
   785,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008609',
   '2015-02-11T15:11:00',
   '1500 BLOCK UNIVERSITY AVE',
   '1194',
   'OF4WWN',
   None,
   None],
  [786,
   '839ED22B-2AE8-4EE8-86C1-69DD1D342D61',
   786,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008611',
   '2015-02-11T15:18:00',
   '61ST ST / BAKER ST',
   '1196',
   'BM4IWS, M',
   None,
   None],
  [787,
   '9314CFE0-A66F-418C-8567-A4D9E7AB8B4F',
   787,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008614',
   '2015-02-11T15:40:00',
   'STANFORD AVE / MARKET ST',
   '1196',
   'M',
   None,
   None],
  [788,
   '3A6FF821-13CA-4095-A499-9B5EEAA39C3C',
   788,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008618',
   '2015-02-11T15:56:00',
   'EASTSHORE/PAGE',
   '1194',
   'BM1IAS',
   None,
   None],
  [789,
   '2E709ACC-20DE-4498-A9E7-E73EF32ED0CC',
   789,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008624',
   '2015-02-11T16:14:00',
   'SAN PABLO AVE / COWPER ST',
   'T',
   'M',
   None,
   None],
  [790,
   'FB4F2BDB-5D21-4299-BF8E-F0CE1E788874',
   790,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008625',
   '2015-02-11T16:15:00',
   'DWIGHT WAY / TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [791,
   '42F4C968-7830-4259-B11F-BF479046C54F',
   791,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008630',
   '2015-02-11T16:22:00',
   'SHATTUCK AVE / BANCROFT WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [792,
   '4F46E76A-F512-4B6D-86B9-7CA50C42CCF9',
   792,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008634',
   '2015-02-11T16:43:00',
   'CEDAR ST / JUANITA WAY',
   'T',
   'WF3TWN',
   None,
   None],
  [793,
   'BFC4F259-999B-4FEF-8825-8C088EAB38C7',
   793,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008635',
   '2015-02-11T16:46:00',
   '2300 BLOCK FOURTH ST',
   'T',
   'M',
   None,
   None],
  [794,
   'BC6D4DF3-46B7-4D8F-8F08-41210976316C',
   794,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008637',
   '2015-02-11T16:53:00',
   'HARMON ST / SACRAMENTO ST',
   'T',
   'BM4KWS',
   None,
   None],
  [795,
   '07C8E84A-51FA-40C3-B45B-C03F04183EEF',
   795,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008639',
   '2015-02-11T17:00:00',
   'HEARST AVE / SECOND ST',
   'T',
   'AM2TWN',
   None,
   None],
  [796,
   '0229D04A-0C26-482A-B5CD-63DBD5421DC5',
   796,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008646',
   '2015-02-11T17:18:00',
   '53RD ST / MARKET ST',
   'T',
   'BM4TWN',
   None,
   None],
  [797,
   'B2C485EB-491D-4C1F-8BCD-0B60D4944769',
   797,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008656',
   '2015-02-11T18:09:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM4RWN',
   None,
   None],
  [798,
   'FB6AE551-B029-4578-8ACB-C275B98179E6',
   798,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008662',
   '2015-02-11T18:46:00',
   'ASHBY/SAN PABLO',
   '1194',
   'BM4KWS, M',
   None,
   None],
  [799,
   'F7E05D8C-B92B-4BAC-B637-08A170F8289F',
   799,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008664',
   '2015-02-11T18:47:00',
   'BROWNING/BANCROFT',
   'T',
   'BM4TAS',
   None,
   None],
  [800,
   '41B3B288-883D-451B-AAED-0EBFB4D97447',
   800,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008668',
   '2015-02-11T19:01:00',
   'SIXTY-SECOND ST / KING ST',
   '1194',
   'OM3KAS',
   None,
   None],
  [801,
   'A70482F5-6A78-4737-858E-DF41A5FE2BC8',
   801,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008687',
   '2015-02-11T20:51:00',
   '2100 BLOCK SHATTUCK AVE',
   '1194',
   'HM2RWS, M',
   None,
   None],
  [802,
   '9FD838DA-22D4-4620-A34D-E2C8D5CFDFE7',
   802,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008707',
   '2015-02-11T22:36:00',
   '2200 BLOCK BONAR ST',
   '1196',
   'M',
   None,
   None],
  [803,
   'CC7B82A3-2F86-445E-9FB3-315F068789E3',
   803,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008713',
   '2015-02-11T23:16:00',
   'SHATTUCK AVE / VINE ST',
   '1194',
   'M',
   None,
   None],
  [804,
   '2EAEC065-61B2-4099-A6F5-16C8F021A7CD',
   804,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008714',
   '2015-02-11T23:22:00',
   'CHANNING WAY / TELEGRAPH AVE',
   'T',
   'M',
   None,
   None],
  [805,
   '006F4A58-D065-487A-A30D-214DF8536ABF',
   805,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008716',
   '2015-02-11T23:58:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'HM2ION',
   None,
   None],
  [806,
   '82885059-E80E-4B54-81FB-D2EBF4058AA6',
   806,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008724',
   '2015-02-12T01:33:00',
   'TELEGRAPH AVE / WARD ST',
   'T',
   'M',
   None,
   None],
  [807,
   '1A5759FD-3BF0-4FBD-A4D9-374D518BD812',
   807,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008727',
   '2015-02-12T02:35:00',
   'UNIVESITY AVE/8TH ST',
   'T',
   'WM3TWN',
   None,
   None],
  [808,
   '5EC043D7-0ADB-4117-8E08-C4843E851068',
   808,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008744',
   '2015-02-12T07:58:00',
   '2200 BLOCK HEARST AVE',
   '1196',
   'AF4WAN',
   None,
   None],
  [809,
   '96B4A0AB-484A-4E00-91D6-F9B7AAA19D40',
   809,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008746',
   '2015-02-12T08:09:00',
   'HEARST AVE / LE ROY AVE',
   'T',
   'AF2TCN',
   None,
   None],
  [810,
   '65F4CB70-00D8-4FCB-B896-79A47F4EE494',
   810,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008752',
   '2015-02-12T08:31:00',
   'SOLANO AVE / FRESNO AVE',
   '1194',
   'WF4ICN',
   None,
   None],
  [811,
   '2D26C1C3-E5B2-4449-B2F1-1A1062E9E32D',
   811,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008769',
   '2015-02-12T09:46:00',
   'KITTREDGE ST / FULTON ST',
   'T',
   'BF2TCN',
   None,
   None],
  [812,
   '1B7B6B83-D6FA-4597-A49F-A4E58395E42F',
   812,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008773',
   '2015-02-12T10:12:00',
   'DURANT AVE/FULTON ST',
   'T',
   'WM4TCN',
   None,
   None],
  [813,
   '8250C979-3BB1-4FE3-AC58-0EF090AFD9A6',
   813,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008775',
   '2015-02-12T10:33:00',
   '2300 BLOCK BANCROFT',
   'T',
   'AM4TWN',
   None,
   None],
  [814,
   '1D581F65-A1AB-4F4B-A131-899E43C6B62D',
   814,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008791',
   '2015-02-12T12:09:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RWN',
   None,
   None],
  [815,
   '508EED6B-0D14-4C8E-A72E-95F866843A61',
   815,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008802',
   '2015-02-12T12:34:00',
   '1500 BLOCK UNIVERSITY AVE',
   '1194',
   'WM4RWN, M',
   None,
   None],
  [816,
   '15600C29-BAA4-4175-BCA7-B922DE31048D',
   816,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008821',
   '2015-02-12T13:49:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'AF3TAS',
   None,
   None],
  [817,
   '4EBE10C7-C017-4093-B2FB-C1280859852C',
   817,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008822',
   '2015-02-12T13:54:00',
   'MILVIA ST / KITTREDGE ST',
   'T',
   'M',
   None,
   None],
  [818,
   '7D1AED16-AB4C-4054-85D8-41E68BFBCE70',
   818,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008829',
   '2015-02-12T15:07:00',
   'BAKER ST / SIXTY-SECOND ST',
   'T',
   'P',
   None,
   None],
  [819,
   '8BCFC7FD-E314-4E2C-ACE8-86F30FDE1E29',
   819,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008831',
   '2015-02-12T15:15:00',
   '2600 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [820,
   'E57009D1-ECEC-4DCD-9148-3A357D73EDDF',
   820,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008858',
   '2015-02-12T17:22:00',
   '2300 BLOCK TELEGRAPH AVE',
   '1194',
   'WM4KAS, P',
   None,
   None],
  [821,
   'BA2175ED-A1F8-4BB7-9291-1AC750FCCA30',
   821,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008866',
   '2015-02-12T18:09:00',
   'SHATTUCK AVE / VINE ST',
   '1194',
   'WM2IWN',
   None,
   None],
  [822,
   '0B00E044-387A-4486-A4DF-F155B1DFDFD2',
   822,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008886',
   '2015-02-12T20:11:00',
   'ADDISON/SHATTUCK',
   'T',
   'AF3TCN',
   None,
   None],
  [823,
   'DA07DF9D-24C4-48CC-9E2E-8E81003D98C0',
   823,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008892',
   '2015-02-12T21:02:00',
   'TELEGRAPH AVE / RUSSELL ST',
   'T',
   'HF2TWN',
   None,
   None],
  [824,
   'D00244FB-B1C2-475D-848E-ED2B0388CD82',
   824,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008893',
   '2015-02-12T21:07:00',
   '2400 BLOCK BANCROFT WAY',
   '1196',
   'BM4TWN',
   None,
   None],
  [825,
   'C3B7C109-BE9C-4F39-BBB6-EFBAE7050650',
   825,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008894',
   '2015-02-12T21:20:00',
   'SHT/CENT',
   'T',
   'AM2TWN',
   None,
   None],
  [826,
   '9E602D7F-07CB-4748-BDE5-D535CC057F54',
   826,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008898',
   '2015-02-12T21:35:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [827,
   '358AA4AA-11A7-4F44-BC1A-807B2774CA18',
   827,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008899',
   '2015-02-12T21:37:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'M',
   None,
   None],
  [828,
   'F7762BA6-BAA9-4E1B-9762-718E3232EDBB',
   828,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008900',
   '2015-02-12T21:43:00',
   'OXFORD ST / UNIVERSITY AVE',
   'T',
   'OM3KWN',
   None,
   None],
  [829,
   'C6F194F8-D6BF-4AE3-AE4B-81B9806C17B6',
   829,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008905',
   '2015-02-12T21:58:00',
   'DWIGHT WAY / DANA ST',
   'T',
   'OF3TWN',
   None,
   None],
  [830,
   'DD91B6B6-F4CE-4DA9-B8F4-C2B75A6DF9AC',
   830,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008909',
   '2015-02-12T22:11:00',
   'HEARST AVE / SAN PABLO AVE',
   'T',
   'HM2TWN',
   None,
   None],
  [831,
   'DEF54F0C-6616-4F2D-857E-90DFD985DE8A',
   831,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008914',
   '2015-02-12T22:36:00',
   'DURANT AVE / BOWDITCH ST',
   'T',
   'HM2TWN',
   None,
   None],
  [832,
   '1A3E2DC7-A129-46ED-AE3B-0D5F397F2B9C',
   832,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008916',
   '2015-02-12T22:38:00',
   'SACRAMENTO ST / TYLER ST',
   'T',
   'BM4TWN',
   None,
   None],
  [833,
   'CFD51AF7-5611-4843-B3EF-5419EEE1C070',
   833,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008920',
   '2015-02-12T23:03:00',
   'ASHBY AVE / SHATTUCK AVE',
   'T',
   'BF2TWN',
   None,
   None],
  [834,
   '35B5E4D1-8CF9-4696-B78D-5678B9EDA154',
   834,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008921',
   '2015-02-12T23:05:00',
   'MABEL ST / CARRISON ST',
   '1196',
   'FC',
   None,
   None],
  [835,
   'D82EB3E5-C7C9-4EAB-99A9-24DC3680A3EB',
   835,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008922',
   '2015-02-12T23:16:00',
   'RUSSELL ST / TELEGRAPH AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [836,
   'EAD1B638-1231-47B2-AFDF-950468959736',
   836,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008923',
   '2015-02-12T23:37:00',
   'ADDISON ST / MILVIA ST',
   'T',
   'P',
   None,
   None],
  [837,
   '0551033D-5FBA-4CBA-B0FD-DBA60EEB7266',
   837,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008924',
   '2015-02-12T23:39:00',
   'UNIVERSITY AVE / FIFTH ST',
   'T',
   'OM2TWN, M',
   None,
   None],
  [838,
   '7077F0E1-9535-41A3-AAAD-61561103EB2D',
   838,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008926',
   '2015-02-12T23:52:00',
   'BANCROFT WAY / SPAULDING AVE',
   'T',
   'BF4TAS, P',
   None,
   None],
  [839,
   '309660DC-76DB-48B4-9A10-CBD59331F8F6',
   839,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008933',
   '2015-02-13T00:37:00',
   '2400 BLOCK BANCROFT WAY',
   'T',
   'OM2TWN, M',
   None,
   None],
  [840,
   '6CAC721C-A072-4CD1-8E6B-DD9A4051BE3D',
   840,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008936',
   '2015-02-13T00:47:00',
   'ADDISON ST / TENTH ST',
   '1196',
   'BM4TWS',
   None,
   None],
  [841,
   'D238B157-4A53-4EF5-BCC7-5B9244E6DBFC',
   841,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008938',
   '2015-02-13T01:06:00',
   'COLLEGE AVE / BANCROFT WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [842,
   '190CEBA9-D3CC-4734-806D-407D0AF73563',
   842,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008940',
   '2015-02-13T01:26:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'M',
   None,
   None],
  [843,
   'BB5093B7-FB6D-4B58-9E5C-38A13B3623D2',
   843,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008941',
   '2015-02-13T01:40:00',
   'SHATT/ALLSTON',
   '1194',
   'M',
   None,
   None],
  [844,
   '3E53620C-5CDE-48FA-84D4-A99E568C7E88',
   844,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008943',
   '2015-02-13T01:44:00',
   'SHATTUCK AVE / KITTREDGE ST',
   '1194',
   'M',
   None,
   None],
  [845,
   'E8847770-1830-4C41-91A4-4813D6D94D58',
   845,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008946',
   '2015-02-13T02:01:00',
   'ADDISON ST / MILVIA ST',
   'T',
   'P',
   None,
   None],
  [846,
   '6A5E852B-F1CF-4D80-BC63-F9EEAFCB833A',
   846,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008947',
   '2015-02-13T02:22:00',
   '1100 BLOCK UNIVERSITY AVE',
   'T',
   'OM2TWN',
   None,
   None],
  [847,
   'DA3BACF0-82F0-44F1-8430-5E91C8D20AE9',
   847,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008950',
   '2015-02-13T03:04:00',
   'GILMAN/EASTSHORE',
   'T',
   'WM2TWN',
   None,
   None],
  [848,
   '96AD00E0-D786-407F-845A-8AC96F37F5DE',
   848,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008951',
   '2015-02-13T03:18:00',
   '80 BLOCK BOLIVAR DR',
   '1196',
   'WF2IWN',
   None,
   None],
  [849,
   'D5E13B16-193C-450C-9C4D-FC7313205179',
   849,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008965',
   '2015-02-13T07:39:00',
   'UNIVERSITY AVE / TENTH ST',
   'T',
   'HF3TCN',
   None,
   None],
  [850,
   '308E9F37-840F-44AD-BC03-73E9A36C80A1',
   850,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008968',
   '2015-02-13T08:13:00',
   'HEARST AVE / NINTH ST',
   'T',
   'HF3TCN',
   None,
   None],
  [851,
   '330DC641-A13E-4CB0-BAAD-4781B7C9D8B5',
   851,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008971',
   '2015-02-13T08:44:00',
   'SACRAMENTO ST / DERBY ST',
   'T',
   'HM2TCN',
   None,
   None],
  [852,
   '351DDCFE-EED6-4B18-BB3C-77BD38DF29B3',
   852,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008977',
   '2015-02-13T09:48:00',
   'SAN PABLO AVE / DWIGHT WAY',
   'T',
   'WM4IAN',
   None,
   None],
  [853,
   'A5D6FB5D-8EB6-4A12-837A-7B6731E64E5E',
   853,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008981',
   '2015-02-13T10:25:00',
   'SIXTH ST / BANCROFT WAY',
   'T',
   'WM3TCN',
   None,
   None],
  [854,
   '5215E258-AE12-4B59-ADFC-D2C6DC1755EC',
   854,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008986',
   '2015-02-13T10:42:00',
   'HEARST AVE / SIXTH ST',
   'T',
   'BM2TCN',
   None,
   None],
  [855,
   '30B06674-E2FB-4B08-90C4-E598BB95ED93',
   855,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008989',
   '2015-02-13T10:49:00',
   'HEARST AVE / SIXTH ST',
   'T',
   'OM4TCN',
   None,
   None],
  [856,
   '6E78D07D-643A-4DCF-9949-D20FC44FDDA7',
   856,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00008997',
   '2015-02-13T11:32:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'OM4TCN',
   None,
   None],
  [857,
   '5D8484C0-13B4-4B1A-BF5C-E5FAC1012EB0',
   857,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009007',
   '2015-02-13T12:01:00',
   'UNIVERSITY AVE / BONAR ST',
   'T',
   'WF3TCN',
   None,
   None],
  [858,
   'BCE0EB8B-EA17-4E02-BEE2-2DA4E2C4288B',
   858,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009020',
   '2015-02-13T12:58:00',
   'UNIVERSITY AVE / SAN PABLO AVE',
   'T',
   'HM1ICN',
   None,
   None],
  [859,
   '4A128E92-4486-42A5-893D-702B0746F978',
   859,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009023',
   '2015-02-13T13:34:00',
   '37.8494135490001~-122.298472239',
   'T',
   'HM3TCN',
   None,
   None],
  [860,
   '3688FCDF-F829-4AFF-9C77-8D019B8D0301',
   860,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009027',
   '2015-02-13T13:58:00',
   'SAN PABLO AVE / HEARST AVE',
   'T',
   'OF3TCN',
   None,
   None],
  [861,
   '2C0CBA70-340D-4AD9-8E89-8B6D83034DA1',
   861,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009028',
   '2015-02-13T14:16:00',
   '6/UN',
   'T',
   'WF2TCN',
   None,
   None],
  [862,
   '0ADF0B19-6C3A-4A93-BF3D-3C24048C1FA1',
   862,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009032',
   '2015-02-13T14:23:00',
   'UNIVERSITY AVE / SIXTH ST',
   'T',
   'WF4TCN',
   None,
   None],
  [863,
   '09576E68-3215-4225-B043-86D3C3B2061F',
   863,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009035',
   '2015-02-13T14:37:00',
   'SEVENTH ST / UNIVERSITY AVE',
   'T',
   'OF2TCN',
   None,
   None],
  [864,
   '6E7F21F3-F0E1-44E7-940E-8F5A5E5ADBE8',
   864,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009041',
   '2015-02-13T14:50:00',
   'UNIVERSITY AVE / FIFTH ST',
   'T',
   'BM4TCN',
   None,
   None],
  [865,
   '2B82EA8A-00F6-491B-A1B2-AC8D9A2146A6',
   865,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009048',
   '2015-02-13T15:06:00',
   '2400 BLOCK TELEGRAPH AVE',
   '1194',
   'WM3KCS',
   None,
   None],
  [866,
   'ABC91097-2300-4C7C-933B-9854768BC863',
   866,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009067',
   '2015-02-13T16:33:00',
   'DWIGHT WAY / SACRAMENTO ST',
   '1194',
   'OM4RCN',
   None,
   None],
  [867,
   'A876F572-FFC9-4EF9-AFDA-1A4BC1922493',
   867,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009086',
   '2015-02-13T17:53:00',
   'FAIRVIEW ST / ELLIS ST',
   'T',
   'BF4TWN',
   None,
   None],
  [868,
   '3F5E93C9-950E-401C-A708-2F34DA0158FA',
   868,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009087',
   '2015-02-13T17:57:00',
   'TELEGRAPH AVE / HASTE ST',
   '1194',
   'WM3RCN',
   None,
   None],
  [869,
   '7A32AD79-CCF8-4590-BC7A-76D2477FF221',
   869,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009097',
   '2015-02-13T18:50:00',
   'RUSSELL ST / COLLEGE AVE',
   '1194B',
   'WM4IWS',
   None,
   None],
  [870,
   '4C763289-6BAB-47F1-84A1-C644C204430E',
   870,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009102',
   '2015-02-13T19:03:00',
   'PARKER ST / TELEGRAPH AVE',
   'T',
   'HM3TWN',
   None,
   None],
  [871,
   '50B3DF32-0CC7-4255-A206-91E4647AB7AA',
   871,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009106',
   '2015-02-13T19:14:00',
   'SHATTUCK AVE / WARD ST',
   'T',
   'BM4TWN',
   None,
   None],
  [872,
   '667CFA7D-A490-4FD5-A29F-02507DA6EE30',
   872,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009107',
   '2015-02-13T19:17:00',
   'ADELINE ST / EMERSON ST',
   'T',
   'AM2TCN',
   None,
   None],
  [873,
   '5F88CDB0-6273-4798-B492-1455B8183944',
   873,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009108',
   '2015-02-13T19:18:00',
   '1700 BLOCK UNIVERSITY AVE',
   '1194',
   'P',
   None,
   None],
  [874,
   '5DF4B5E7-B0F0-4095-A19C-56010D25F582',
   874,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009109',
   '2015-02-13T19:21:00',
   'ADELINE ST / M L KING JR WAY',
   'T',
   'BF3TWN',
   None,
   None],
  [875,
   '7EDFE6F7-B80D-4425-8DE0-BA005854768D',
   875,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009110',
   '2015-02-13T19:24:00',
   'BYRON ST / BANCROFT WAY',
   'T',
   'HF3TWN',
   None,
   None],
  [876,
   'F167E16D-CD3D-45E1-B88D-CCFBB6B1AE37',
   876,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009111',
   '2015-02-13T19:28:00',
   'RUSSELL ST / MCGEE AVE',
   'T',
   'HM2TWS',
   None,
   None],
  [877,
   '20E70C12-E14C-44F9-9592-92A54BDF5690',
   877,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009112',
   '2015-02-13T19:31:00',
   'ADELINE ST / ASHBY AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [878,
   '39A000F5-F571-4EE7-B7A9-0BC8C07561B5',
   878,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009116',
   '2015-02-13T19:43:00',
   'ALCATRAZ AVE / ADELINE ST',
   'T',
   'BM4TWN',
   None,
   None],
  [879,
   '584DED68-7120-43EA-B760-08B12D3314B3',
   879,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009119',
   '2015-02-13T19:53:00',
   'ACTON ST / CARLETON ST',
   'T',
   'BF2TWN',
   None,
   None],
  [880,
   '7F41A04B-2FC4-4937-9663-A270E3B7B48F',
   880,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009123',
   '2015-02-13T20:08:00',
   '200 BLOCK UNIVERSITY AVE',
   'T',
   'WM4TWN',
   None,
   None],
  [881,
   '9A121FAA-5FE5-49D4-9C62-74C2BBE362F4',
   881,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009124',
   '2015-02-13T20:17:00',
   '37.8661036188751~-122.305688135031',
   'T',
   'BM4TCN',
   None,
   None],
  [882,
   '99446757-238F-4433-AD1B-DAD22C580A40',
   882,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009128',
   '2015-02-13T20:31:00',
   'BERKELEY WAY / M L KING JR WAY',
   'T',
   'BF2TCN',
   None,
   None],
  [883,
   'CAEF7E81-9B6C-4A38-92C3-A98A70EC6497',
   883,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009130',
   '2015-02-13T20:33:00',
   '1300 BLOCK ASHBY AVE',
   '1194B',
   'P',
   None,
   None],
  [884,
   'ECE3A9E0-FCCF-48B2-9457-76922DA2F65C',
   884,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009133',
   '2015-02-13T20:43:00',
   'ALCATRAZ AVE / ADELINE ST',
   'T',
   'WM2TWN',
   None,
   None],
  [885,
   '02C53DE4-185C-4148-A483-D975EBA96175',
   885,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009136',
   '2015-02-13T20:55:00',
   'ASHBY AVE / HARPER ST',
   'T',
   'AR',
   None,
   None],
  [886,
   '82DE6EE9-E2B2-4363-BCFA-7063C4CB3FD2',
   886,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009137',
   '2015-02-13T20:58:00',
   '2100 BLOCK CALIFORNIA ST',
   'T',
   'WF4TWN',
   None,
   None],
  [887,
   'EB8A9802-6A95-4510-ACCC-84832E7BD93C',
   887,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009140',
   '2015-02-13T21:07:00',
   'TUNNEL RD / OAK RIDGE RD',
   'T',
   'OM2TCN',
   None,
   None],
  [888,
   '2A26C5BA-BD13-4A7A-ADAF-82BCDE94FBAC',
   888,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009141',
   '2015-02-13T21:11:00',
   'SIXTY-SIXTH ST / MABEL ST',
   'T',
   'WF2TWN',
   None,
   None],
  [889,
   'E14C65AC-21B0-4A50-A5DF-72DDBB243F7E',
   889,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009144',
   '2015-02-13T21:27:00',
   'OREGON ST / CALIFORNIA ST',
   'T',
   'BM3TWS',
   None,
   None],
  [890,
   '0997A2EC-9449-4A8F-81A9-CFDC13D8F0C9',
   890,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009147',
   '2015-02-13T21:30:00',
   'UNIVERSITY AVE / TENTH ST',
   '1196',
   'M',
   None,
   None],
  [891,
   '98510446-D5B9-4A0C-91BB-CA6E6AC2AF7F',
   891,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009152',
   '2015-02-13T21:51:00',
   'ADELINE ST / ALCATRAZ AVE',
   'T',
   'HM3TCN',
   None,
   None],
  [892,
   'D09E6433-1E1B-4F6F-A9CD-9EDA2A97E683',
   892,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009153',
   '2015-02-13T21:54:00',
   'MARKET ST / SIXTY-SECOND ST',
   'T',
   'BM2TWN',
   None,
   None],
  [893,
   '80FE705A-2004-425E-92CA-354952AAEBC0',
   893,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009154',
   '2015-02-13T21:54:00',
   'GRAYSON ST / SAN PABLO AVE',
   'T',
   'M',
   None,
   None],
  [894,
   '6BAC6D8C-8FFF-435F-9263-A638295473C7',
   894,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009156',
   '2015-02-13T21:58:00',
   '37.8709962090001~-122.250745307',
   'T',
   'AM4TCN',
   None,
   None],
  [895,
   '8F0DAA24-1815-4EFD-9861-A988CC5E1ECC',
   895,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009166',
   '2015-02-13T22:19:00',
   'ARLINGTON AVE / M L KING JR WAY',
   'T',
   'BF2TCN',
   None,
   None],
  [896,
   '830130FC-F7B2-4906-8059-74AB1C00360F',
   896,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009168',
   '2015-02-13T22:28:00',
   'ALCATRAZ AVE / ADELINE ST',
   'T',
   'P',
   None,
   None],
  [897,
   '76288493-BADA-40A2-A47B-165E5A70E87C',
   897,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009169',
   '2015-02-13T22:29:00',
   'SACRAMENTO ST / FAIRVIEW ST',
   'T',
   'BM4TWN',
   None,
   None],
  [898,
   '165DF9FC-D8B4-4A97-9988-2FD0BBC16FFB',
   898,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009171',
   '2015-02-13T22:38:00',
   '37.8609962420001~-122.256143699',
   '1194',
   'M',
   None,
   None],
  [899,
   '45C05DCC-92A5-4486-AC63-8009015DB422',
   899,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009177',
   '2015-02-13T23:08:00',
   'CO/DER',
   'T',
   'WM4TWN',
   None,
   None],
  [900,
   'E5D4B9A3-8F44-43B9-B71E-3E4005D01FF2',
   900,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009178',
   '2015-02-13T23:09:00',
   'PRINCE ST / M L KING JR WAY',
   'T',
   'BM4TWN',
   None,
   None],
  [901,
   '18CF9F96-1032-4701-B6A5-A6428A54C58D',
   901,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009179',
   '2015-02-13T23:39:00',
   'DURANT AVE / TELEGRAPH AVE',
   '1194',
   'BM1IWN',
   None,
   None],
  [902,
   '02473823-9289-4C7D-8194-8AE35EB2B557',
   902,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009180',
   '2015-02-13T23:40:00',
   '1800 BLOCK SEVENTH ST',
   '1196',
   'BM2IWN',
   None,
   None],
  [903,
   'CC9A2619-CFE2-41A5-8BE5-6509B5F6D461',
   903,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009181',
   '2015-02-13T23:41:00',
   'DANA ST / BANCROFT WAY',
   'T',
   'BM3TWN',
   None,
   None],
  [904,
   'BC389B68-EC04-4E97-8D4B-BD214EB538DC',
   904,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009195',
   '2015-02-14T01:44:00',
   'HASTE ST / TELEGRAPH AVE',
   '1194',
   'WM2IWN',
   None,
   None],
  [905,
   'DBEE9DE7-BB9C-483E-A9E1-4B94CC74BAF6',
   905,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009205',
   '2015-02-14T02:19:00',
   'ASHBY AVE / SACRAMENTO ST',
   'T',
   'BM3TWN',
   None,
   None],
  [906,
   '84A8D797-DD17-4A1A-A6D6-ADA26C6BBA7C',
   906,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009254',
   '2015-02-14T12:05:00',
   'CARLETON ST / FULTON ST',
   '1194',
   'M',
   None,
   None],
  [907,
   '7E0F182D-AE1B-42B0-ADB2-BE765D401A80',
   907,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009298',
   '2015-02-14T15:39:00',
   'SACRAMENTO ST / UNIVERSITY AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [908,
   '192EEFC5-FE2A-4724-B6F4-9C1C49E70289',
   908,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009301',
   '2015-02-14T16:02:00',
   '2700 BLOCK WALLACE ST',
   '1194',
   'M',
   None,
   None],
  [909,
   'DE2BD8BB-9032-46D6-B7B3-A18B8347A5D8',
   909,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009312',
   '2015-02-14T17:04:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WM2RCN',
   None,
   None],
  [910,
   '94B64F9F-13C2-48C9-A019-9A0866948D87',
   910,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009324',
   '2015-02-14T18:33:00',
   'DANA ST / DURANT AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [911,
   '2F60D611-7928-4576-B012-D6EC5443746D',
   911,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009326',
   '2015-02-14T18:37:00',
   'HARMON ST / SACRAMENTO ST',
   'T',
   'BM2TWN',
   None,
   None],
  [912,
   '9CBE620A-20D0-42B2-8963-6BE5CCEDD475',
   912,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009333',
   '2015-02-14T18:53:00',
   'ASHBY AVE / TELEGRAPH AVE',
   'T',
   'WM4TCN',
   None,
   None],
  [913,
   '246C3A1A-2A67-45B7-AE2D-F2F79C871D19',
   913,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009335',
   '2015-02-14T19:08:00',
   'SIXTY-FIFTH ST / SAN PABLO AVE',
   '1194',
   'WM3RWS',
   None,
   None],
  [914,
   'A711B50F-7340-4A96-99C5-9DD44FD22312',
   914,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009341',
   '2015-02-14T19:22:00',
   '37.8716593979737~-122.302363396026',
   '1194',
   'BF2IWS',
   None,
   None],
  [915,
   '338356C0-36A9-4135-AE99-C3287554F582',
   915,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009352',
   '2015-02-14T20:27:00',
   'RUSSELL ST / MCGEE AVE',
   'T',
   'BM2TWS',
   None,
   None],
  [916,
   '7208E7D6-B407-4F99-B350-B67516D55091',
   916,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009355',
   '2015-02-14T20:46:00',
   'BANCROFT WAY / ELLSWORTH ST',
   'T',
   'M',
   None,
   None],
  [917,
   '2D4ACEBE-9534-423F-B1A0-A64B4964948F',
   917,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009360',
   '2015-02-14T21:15:00',
   'ADELINE ST / FAIRVIEW ST',
   'T',
   'BM3TWN',
   None,
   None],
  [918,
   'DB4BAFBA-DDA0-44B0-8EBC-61CAEC3EA4D3',
   918,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009361',
   '2015-02-14T21:22:00',
   'M L KING JR WAY / 61ST ST',
   'T',
   'HM4TWN',
   None,
   None],
  [919,
   '95B628C3-54D4-4970-8B96-8C0EC77A5469',
   919,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009366',
   '2015-02-14T21:37:00',
   'HEARST AVE / FOURTH ST',
   'T',
   'M',
   None,
   None],
  [920,
   'C09BAAA4-F78F-4980-AE61-A6DE2CFDC1A3',
   920,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009367',
   '2015-02-14T21:37:00',
   'ADELINE ST / WOOLSEY ST',
   'T',
   'BF2TWN',
   None,
   None],
  [921,
   '078616EC-7519-4547-B2A1-D4FF80E5B9D4',
   921,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009370',
   '2015-02-14T21:44:00',
   'M L KING JR WAY / 61ST ST',
   'T',
   'OM2TWN',
   None,
   None],
  [922,
   '07C1222F-69E6-4C5E-9E6E-DEDFF1CF5496',
   922,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009372',
   '2015-02-14T21:54:00',
   '2200 BLOCK DWIGHT WAY',
   'T',
   'AM2RWS',
   None,
   None],
  [923,
   '3F45EFA1-2FC5-46FC-B206-7E8A2B4A80DD',
   923,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009373',
   '2015-02-14T21:56:00',
   'ALCATRAZ AVE / ELLIS ST',
   'T',
   'AF3TWN',
   None,
   None],
  [924,
   '1F883FF2-7822-476F-9258-83880892695D',
   924,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009374',
   '2015-02-14T21:57:00',
   'UNIVERSITY AVE / W FRONTAGE RD',
   'T',
   'M',
   None,
   None],
  [925,
   '41529BA1-F1FE-4127-9E3D-ACD1C48DB5A4',
   925,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009375',
   '2015-02-14T21:58:00',
   '2100 BLOCK SAN PABLO AVE',
   '1194',
   'P',
   None,
   None],
  [926,
   '64B12BAB-2C2B-4C91-B75D-5056CF52EA34',
   926,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009376',
   '2015-02-14T22:01:00',
   'SIXTY-SIXTH ST / IDAHO ST',
   'T',
   'WM4TWN',
   None,
   None],
  [927,
   '3BB3A72F-6219-4730-8AC9-775F06A1945D',
   927,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009378',
   '2015-02-14T22:05:00',
   'SHATTUCK AVE / STUART ST',
   'T',
   'HF2TWN',
   None,
   None],
  [928,
   '782B0E4E-331B-46C7-A80F-89CDFD3BD481',
   928,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009379',
   '2015-02-14T22:09:00',
   '64TH ST / SAN PABLO AVE',
   'T',
   'BF4TWN',
   None,
   None],
  [929,
   'F892F1E7-1F5F-41EC-8763-1F0D7FCE0B4F',
   929,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009382',
   '2015-02-14T22:15:00',
   'SIXTY-SEVENTH ST / SAN PABLO AVE',
   'T',
   'BM2TWS',
   None,
   None],
  [930,
   '517031FA-9B3C-4F35-93DB-2412DF91F43F',
   930,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009390',
   '2015-02-14T22:43:00',
   'HASTE ST / TELEGRAPH AVE',
   'T',
   'BM3TWN',
   None,
   None],
  [931,
   '45A24283-EA68-4A36-B35F-C940FA5CD35E',
   931,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009391',
   '2015-02-14T22:45:00',
   'COLLEGE AVE / RUSSELL ST',
   'T',
   'HF3TCN',
   None,
   None],
  [932,
   'EA21977F-8CED-4E62-9266-51F99DAB09C9',
   932,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009397',
   '2015-02-14T23:01:00',
   'TELEGRAPH AVE / CHANNING WAY',
   'T',
   'BM2TCN',
   None,
   None],
  [933,
   '9DF0EB2E-77C3-4B64-AD89-D38F079E31F2',
   933,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009399',
   '2015-02-14T23:21:00',
   'ASHBY AVE / TELEGRAPH AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [934,
   '76F07E44-0A15-4EC9-98C3-EE13B51D3573',
   934,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009400',
   '2015-02-14T23:23:00',
   'PARKER ST / ELLSWORTH ST',
   'T',
   'WM2TWN',
   None,
   None],
  [935,
   'EC316D6A-B768-4206-9E66-8F4E61BEC93B',
   935,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009401',
   '2015-02-14T23:31:00',
   'PROSPECT ST / DWIGHT WAY',
   'T',
   'BM2TWN',
   None,
   None],
  [936,
   '0F5629E2-5FF8-4CF0-9275-FE75F7A29F1A',
   936,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009402',
   '2015-02-14T23:32:00',
   'SACRAMENTO ST / ASHBY AVE',
   'T',
   'BF2TWN',
   None,
   None],
  [937,
   '999B6B18-CC62-4DE0-B577-21D394F7D527',
   937,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009403',
   '2015-02-14T23:42:00',
   'PARKER ST / REGENT ST',
   'T',
   'TOW, HM2TCS',
   None,
   None],
  [938,
   '9CF289E6-3915-43C0-AF22-C0CCA716BC34',
   938,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009407',
   '2015-02-15T00:05:00',
   'BOWDITCH ST / DURANT AVE',
   'T',
   'HM2TWN',
   None,
   None],
  [939,
   'F89A6AAD-B3FA-4619-8C24-E3518DF642BF',
   939,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009413',
   '2015-02-15T00:25:00',
   'ALCATRAZ AVE / SACRAMENTO ST',
   'T',
   'BM4TCN',
   None,
   None],
  [940,
   'F428EE93-BD8C-493D-B39A-7DE8F5AE73AA',
   940,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009414',
   '2015-02-15T00:26:00',
   'FOURTH ST / ADDISON ST',
   'T',
   'HF1TCN',
   None,
   None],
  [941,
   '1508BCD4-93C0-4AB0-BA6B-1AD4E90661A0',
   941,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009417',
   '2015-02-15T00:42:00',
   'SIXTY-THIRD ST / MARKET ST',
   'T',
   'BM3TWS',
   None,
   None],
  [942,
   'CF34FB14-A966-4E1D-9B6F-CDAF634D9E18',
   942,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009418',
   '2015-02-15T00:48:00',
   'ADELINE ST / ASHBY AVE',
   'T',
   'WF3TWN',
   None,
   None],
  [943,
   'F64FA6B8-418D-43DB-B2B4-CFCE3770FDEC',
   943,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009421',
   '2015-02-15T01:10:00',
   '2900 BLOCK SACRAMENTO ST',
   '1194B',
   'BM4TWN',
   None,
   None],
  [944,
   '0FEDE7F9-079A-4C80-9CA1-B6010E73417D',
   944,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009422',
   '2015-02-15T01:12:00',
   'HARPER ST / PRINCE ST',
   'T',
   'WM2TWN',
   None,
   None],
  [945,
   '84E75EE3-7A7A-4C3B-8B5A-72009C90F9C0',
   945,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009424',
   '2015-02-15T01:29:00',
   'DELAWARE ST / TENTH ST',
   '1194',
   'BF4RON',
   None,
   None],
  [946,
   '9A78425B-EF36-4676-BF15-95BEDE02343D',
   946,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009426',
   '2015-02-15T01:41:00',
   'WARRING ST / DWIGHT WAY',
   'T',
   'BF2TWN',
   None,
   None],
  [947,
   '30F9D07C-3126-4EF2-891B-1AF157C73201',
   947,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009432',
   '2015-02-15T02:18:00',
   'SAN PABLO AVE / HEINZ AVE',
   'T',
   'AR',
   None,
   None],
  [948,
   '6D83B785-A48F-4312-90F7-BD3209E3D717',
   948,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009436',
   '2015-02-15T02:58:00',
   'BLAKE ST / MATHEWS ST',
   '1194',
   'M',
   None,
   None],
  [949,
   '9A609E99-11FC-4823-A81C-DD36072E2180',
   949,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009437',
   '2015-02-15T03:01:00',
   '2100 BLOCK SAN PABLO AVE',
   '1194',
   'AR',
   None,
   None],
  [950,
   'C13C645E-58DC-4550-9CFF-8812A2E97A3F',
   950,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009441',
   '2015-02-15T03:14:00',
   'SAN PABLO AVE / HEINZ AVE',
   'T',
   'BF4TWN',
   None,
   None],
  [951,
   '578487CD-F556-4E37-B2EB-99E896DBBA47',
   951,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009445',
   '2015-02-15T04:08:00',
   'VIRGINIA ST / SAN PABLO AVE',
   '1194',
   'M',
   None,
   None],
  [952,
   'AB9A8B70-ABD8-4D12-9EB7-15C24A7DD9CA',
   952,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009482',
   '2015-02-15T13:11:00',
   'MILVIA ST / DWIGHT WAY',
   'T',
   'WF3TCN',
   None,
   None],
  [953,
   'EEB77DC9-2C1D-4A6C-AD68-0BDF632D0A06',
   953,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009532',
   '2015-02-15T18:37:00',
   'GILMAN ST / SAN PABLO AVE',
   'T',
   'WF2TCN',
   None,
   None],
  [954,
   '5673611D-E6A4-448D-A476-CFD27AAD34F5',
   954,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009536',
   '2015-02-15T19:04:00',
   '61ST ST / DOVER ST',
   'T',
   'BM4TWN',
   None,
   None],
  [955,
   'E49964EE-CB65-4B66-8805-17B8D62EAF9B',
   955,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009538',
   '2015-02-15T19:13:00',
   'SACRAMENTO ST / ALCATRAZ AVE',
   'T',
   'BM2TWS',
   None,
   None],
  [956,
   'BE4F09F0-E616-40F3-87A1-3A1BCE12A08D',
   956,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009544',
   '2015-02-15T19:35:00',
   'SIXTH ST / HEARST AVE',
   'T',
   'M',
   None,
   None],
  [957,
   '9C246D0B-0BCC-4142-9147-16457F18F361',
   957,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009545',
   '2015-02-15T19:37:00',
   'SIXTY-SECOND ST / DOVER ST',
   'T',
   'BM4TWN',
   None,
   None],
  [958,
   'DE5DFDBE-0D88-44C4-B640-B2EDFD70D40F',
   958,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009546',
   '2015-02-15T19:38:00',
   'SAN PABLO AVE / CEDAR ST',
   'T',
   'WM2TWN',
   None,
   None],
  [959,
   '170B87DF-2838-480A-A7E7-FBCC976B18B2',
   959,
   1444146409,
   '932858',
   1444146409,
   '932858',
   None,
   '2015-00009547',
   '2015-02-15T19:48:00',
   '60TH ST / M L KING JR WAY',
   'T',
   'BM2TWN',
   None,
   None],
  [960,
   '866E785E-E5F6-44FD-8FE2-DC8B828D0C78',
   960,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009552',
   '2015-02-15T20:04:00',
   '60TH ST / SHATTUCK AVE',
   'T',
   'BM4TWN',
   None,
   None],
  [961,
   'D8E0B4EC-03D8-4C7A-9FE2-5E79CF9038B8',
   961,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009557',
   '2015-02-15T20:35:00',
   'ALCATRAZ AVE / DOVER ST',
   'T',
   'BM4TWN',
   None,
   None],
  [962,
   '7783B18C-575B-47B4-82C2-A65BEC76C430',
   962,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009558',
   '2015-02-15T20:47:00',
   'SAN PABLO AVE / PARKER ST',
   'T',
   'BM4TWN',
   None,
   None],
  [963,
   '4564C62E-1078-4055-916D-46A8BFE34D7D',
   963,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009559',
   '2015-02-15T20:51:00',
   'SIXTY-SIXTH ST / SAN PABLO AVE',
   'T',
   'WM1TWS',
   None,
   None],
  [964,
   '0166779D-B925-429B-ABCC-0282CC7B5CD2',
   964,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009563',
   '2015-02-15T21:09:00',
   '1000 BLOCK GILMAN ST',
   'T',
   'M',
   None,
   None],
  [965,
   'D77A5987-5604-4D88-9286-115F52B5A24A',
   965,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009564',
   '2015-02-15T21:19:00',
   'MABEL ST / SIXTY-SEVENTH ST',
   'T',
   'AM2TWN',
   None,
   None],
  [966,
   '2467723E-6E5A-4B68-8B90-C6C113A72994',
   966,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009565',
   '2015-02-15T21:20:00',
   'SIXTH ST / UNIVERSITY AVE',
   'T',
   'WM3TON',
   None,
   None],
  [967,
   '3E69C5F3-75C5-4F52-8663-F779D1C1494B',
   967,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009566',
   '2015-02-15T21:21:00',
   'STANFORD AVE / MARKET ST',
   'T',
   'BM3TWN',
   None,
   None],
  [968,
   '9BCC9E76-5CDD-4741-B701-6DDFB689181C',
   968,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009569',
   '2015-02-15T21:31:00',
   'NINTH ST / PAGE ST',
   '1196',
   'M',
   None,
   None],
  [969,
   '50BDEB0B-444B-4190-98BA-468635D770D2',
   969,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009572',
   '2015-02-15T21:55:00',
   'SAN PABLO AVE / VIRGINIA ST',
   'T',
   'M',
   None,
   None],
  [970,
   'C31D0E47-6737-4A6B-A459-B45D35AC7EFB',
   970,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009573',
   '2015-02-15T21:59:00',
   'FOURTH ST / UNIVERSITY AVE',
   'T',
   'WM3TWN',
   None,
   None],
  [9988,
   '5B10469C-D571-446E-92DF-7F1560691700',
   9988,
   1452769362,
   '932858',
   1452769362,
   '932858',
   None,
   '2015-00069863',
   '2015-11-29T20:08:00',
   '1300 BLOCK SHATTUCK AVE',
   'T',
   'M',
   None,
   None],
  [971,
   '9450DEED-869D-435B-B129-EC38F1A91C5E',
   971,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009574',
   '2015-02-15T22:13:00',
   'UNIVERSITY AVE / EIGHTH ST',
   'T',
   'HM2TWN',
   None,
   None],
  [972,
   '77254898-6BAB-4BBC-A739-8864CF40713D',
   972,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009577',
   '2015-02-15T22:27:00',
   'UNIVERSITY AVE / NINTH ST',
   'T',
   'M',
   None,
   None],
  [973,
   '9BCB206B-2047-449F-A47F-8A1BE95054DA',
   973,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009578',
   '2015-02-15T22:32:00',
   'ASHBY AVE / SEVENTH ST',
   'T',
   'HM2TWN',
   None,
   None],
  [974,
   '8F1BC32E-C0E0-4F85-B46A-F1907074B756',
   974,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009579',
   '2015-02-15T22:42:00',
   '37.870366518~-122.318416343',
   '1196',
   'BF2IWN',
   None,
   None],
  [976,
   '0B0A34E8-2936-41A0-92FF-4B36743F7A4C',
   976,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009581',
   '2015-02-15T22:48:00',
   '55TH ST / MARKET ST',
   'T',
   'BM3TWN',
   None,
   None],
  [977,
   'D2A44BD4-DD6E-4618-BA38-20200217ECC2',
   977,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009582',
   '2015-02-15T22:54:00',
   'EASTSHORE HWY / PAGE ST',
   'T',
   'M',
   None,
   None],
  [978,
   '7D96B2F9-72F0-4E7B-9D07-BC47C594289C',
   978,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009583',
   '2015-02-15T23:01:00',
   'FOURTH ST / ALLSTON WAY',
   '1196',
   'WM4IWN',
   None,
   None],
  [979,
   'F0D614A6-2593-480D-BECF-3DBF57FAC803',
   979,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009585',
   '2015-02-15T23:05:00',
   '57TH ST / SHATTUCK AVE',
   'T',
   'BM3TWS',
   None,
   None],
  [980,
   'CB3F25BD-1EF1-4523-B809-CC2FE1B1BD5A',
   980,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009593',
   '2015-02-15T23:45:00',
   '37.8569132380001~-122.300816083',
   'T',
   'TOW, BF3TAN, P',
   None,
   None],
  [981,
   '8BF7192B-820B-49C0-BDCC-64A075A03341',
   981,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009594',
   '2015-02-15T23:51:00',
   'KITTREDGE ST / MILVIA ST',
   'T',
   'TOW, HM2TCS',
   None,
   None],
  [982,
   '44A4BE36-7F84-48CC-890D-B173382E97D0',
   982,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009599',
   '2015-02-16T01:02:00',
   '2500 BLOCK DURANT AVE',
   '1194',
   'M',
   None,
   None],
  [983,
   '7619E312-B953-45C9-9FAB-0BB6E2B43A2C',
   983,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009603',
   '2015-02-16T01:30:00',
   '2900 BLOCK TELEGRAPH AVE',
   'T',
   'BM2TWN',
   None,
   None],
  [984,
   '49BEFEFB-4525-4C77-97D5-2C37DA7E59B8',
   984,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009606',
   '2015-02-16T01:46:00',
   'ASHBY AVE / WHEELER ST',
   'T',
   'WF2TWN',
   None,
   None],
  [985,
   '58611E96-5F98-44C7-AD75-52295E8F75AC',
   985,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009607',
   '2015-02-16T01:58:00',
   'M L KING JR WAY / ASHBY AVE',
   'T',
   'WF2TWN',
   None,
   None],
  [986,
   'CA571856-EF21-40D3-A882-0103201FCA82',
   986,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009610',
   '2015-02-16T02:04:00',
   'FAIRVIEW ST / ADELINE ST',
   '1194',
   'M',
   None,
   None],
  [987,
   '34F40015-AEAF-4795-AB05-B7AE7316177A',
   987,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009615',
   '2015-02-16T02:35:00',
   'UNIVERSITY AVE / ACTON ST',
   '1194B',
   'P',
   None,
   None],
  [988,
   '8A925747-185C-42DE-9924-9062E7CEF4BD',
   988,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009616',
   '2015-02-16T02:51:00',
   'ALLSTON WAY / MILVIA ST',
   '1194B',
   '0',
   None,
   None],
  [989,
   '56E0B471-B9E6-46F1-846A-57A058D36ED3',
   989,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009618',
   '2015-02-16T03:45:00',
   '2200 BLOCK SHATTUCK AVE',
   '1194',
   'WF1IWS',
   None,
   None],
  [990,
   '31D9A2C8-EC3F-4E0A-92F2-BDC59F53041C',
   990,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009625',
   '2015-02-16T07:22:00',
   '1700 BLOCK SAN PABLO AVE',
   'T',
   'HM2TCN',
   None,
   None],
  [991,
   '87CE5803-B48D-41B0-B305-720B4172044D',
   991,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009626',
   '2015-02-16T07:29:00',
   '1800 BLOCK SAN PABLO AVE',
   '1194',
   'BM4RWN',
   None,
   None],
  [992,
   'F581DBA3-26CE-4717-9568-F3CECDD898F0',
   992,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009627',
   '2015-02-16T07:39:00',
   'SAN PABLO AVE / ALLSTON WAY',
   'T',
   'AM2TCN',
   None,
   None],
  [993,
   '2D82B1F5-460F-49F0-961E-7BD9F0A0DF2D',
   993,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009629',
   '2015-02-16T07:42:00',
   'SIXTH ST / HEARST AVE',
   'T',
   'WF3TCN',
   None,
   None],
  [994,
   'AF1D1950-5A41-4A92-8C85-F8AA41EC2828',
   994,
   1444146410,
   '932858',
   1444146410,
   '932858',
   None,
   '2015-00009631',
   '2015-02-16T07:53:00',
   'SIXTH ST / UNIVERSITY AVE',
   'T',
   'WM3TCN',
   None,
   None],
  ...]}
In [38]:
stops_json.keys()
Out[38]:
dict_keys(['meta', 'data'])

Observation

The JSON dictionary contains a meta key which likely refers to meta data (data about the data). Meta data often maintained with the data and can be a good source of additional information.





Digging into Meta Data

We can investigate the meta data further by examining the keys associated with the metadata.

In [39]:
stops_json['meta'].keys()
Out[39]:
dict_keys(['view'])

The meta key contains another dictionary called view. This likely refers to meta-data about a particular "view" of some underlying database. We will learn more about views as we study SQL later in the class.

In [40]:
stops_json['meta']['view'].keys()
Out[40]:
dict_keys(['id', 'name', 'attribution', 'averageRating', 'category', 'createdAt', 'description', 'displayType', 'downloadCount', 'hideFromCatalog', 'hideFromDataJson', 'indexUpdatedAt', 'newBackend', 'numberOfComments', 'oid', 'provenance', 'publicationAppendEnabled', 'publicationDate', 'publicationGroup', 'publicationStage', 'rowsUpdatedAt', 'rowsUpdatedBy', 'tableId', 'totalTimesRated', 'viewCount', 'viewLastModified', 'viewType', 'columns', 'grants', 'metadata', 'owner', 'query', 'rights', 'tableAuthor', 'tags', 'flags'])

Notice that this a nested/recursive data structure. As we dig deeper we reveal more and more keys and the corresponding data:

meta
|-> data
    | ... (haven't explored yet)
|-> view
    | -> id
    | -> name
    | -> attribution 
    ...

There is a key called description in the view sub dictionary. This likely contains a description of the data:

In [41]:
print(stops_json['meta']['view']['description'])
This data was extracted from the Department’s Public Safety Server and covers the data beginning January 26, 2015.  On January 26, 2015 the department began collecting data pursuant to General Order B-4 (issued December 31, 2014).  Under that order, officers were required to provide certain data after making all vehicle detentions (including bicycles) and pedestrian detentions (up to five persons).  This data set lists stops by police in the categories of traffic, suspicious vehicle, pedestrian and bicycle stops.  Incident number, date and time, location and disposition codes are also listed in this data.

Address data has been changed from a specific address, where applicable, and listed as the block where the incident occurred.  Disposition codes were entered by officers who made the stop.  These codes included the person(s) race, gender, age (range), reason for the stop, enforcement action taken, and whether or not a search was conducted.

The officers of the Berkeley Police Department are prohibited from biased based policing, which is defined as any police-initiated action that relies on the race, ethnicity, or national origin rather than the behavior of an individual or information that leads the police to a particular individual who has been identified as being engaged in criminal activity.




Columns Meta data

Another potentially useful key in the meta data dictionary is the columns. This returns a list:

In [42]:
type(stops_json['meta']['view']['columns'])
Out[42]:
list

We can brows the list using python:

In [43]:
for c in stops_json['meta']['view']['columns']:
    print(c["name"], "----------->")
    if "description" in c:
        print(c["description"])
    print("======================================\n")
sid ----------->
======================================

id ----------->
======================================

position ----------->
======================================

created_at ----------->
======================================

created_meta ----------->
======================================

updated_at ----------->
======================================

updated_meta ----------->
======================================

meta ----------->
======================================

Incident Number ----------->
Number of incident created by Computer Aided Dispatch (CAD) program
======================================

Call Date/Time ----------->
Date and time of the incident/stop
======================================

Location ----------->
General location of the incident/stop
======================================

Incident Type ----------->
This is the occurred incident type created in the CAD program.  A code signifies a traffic stop (T), suspicious vehicle stop (1196), pedestrian stop (1194) and bicycle stop (1194B).
======================================

Dispositions ----------->
Ordered in the following sequence:
1st Character = Race, as follows:
A (Asian) B (Black) H (Hispanic) O (Other) W (White)
2nd Character = Gender, as follows:
F (Female) M (Male)
3rd Character = Age Range, as follows:
1 (Less than 18) 2 (18-29) 3 (30-39), 4 (Greater than 40)
4th Character = Reason, as follows:
I (Investigation) T (Traffic) R (Reasonable Suspicion)
K (Probation/Parole) W (Wanted)
5th Character = Enforcement, as follows:
A (Arrest) C (Citation) O (Other) W (Warning)
6th Character = Car Search, as follows:
S (Search) N (No Search)

Additional dispositions may also appear.  They are:
P - Primary case report
M - MDT narrative only
AR - Arrest report only (no case report submitted)
IN - Incident report
FC - Field Card
CO - Collision investigation report
MH - Emergency Psychiatric Evaluation
TOW - Impounded vehicle
0 or 00000 – Officer made a stop of more than five persons
======================================

Location - Latitude ----------->
General latitude of the call.  This data is only uploaded after January 2017
======================================

Location - Longitude ----------->
General longitude of the call.  This data is only uploaded after January 2017.
======================================

Observations?

  1. The above meta data tells us a lot about the columns in the data including both column names and even descriptions. This information will be useful in loading and working with the data.
  2. JSON makes it easier (than CSV) to create "self-documented data".
  3. Self documenting data can be helpful since it maintains it's own description and these descriptions are more likely to be updated as data changes.

Examining the Data Field

We can look at a few entires in the data field

In [44]:
stops_json['data'][0:2]
Out[44]:
[[1,
  '29A1B912-A0A9-4431-ADC9-FB375809C32E',
  1,
  1444146408,
  '932858',
  1444146408,
  '932858',
  None,
  '2015-00004825',
  '2015-01-26T00:10:00',
  'SAN PABLO AVE / MARIN AVE',
  'T',
  'M',
  None,
  None],
 [2,
  '1644D161-1113-4C4F-BB2E-BF780E7AE73E',
  2,
  1444146408,
  '932858',
  1444146408,
  '932858',
  None,
  '2015-00004829',
  '2015-01-26T00:50:00',
  'SAN PABLO AVE / CHANNING WAY',
  'T',
  'M',
  None,
  None]]

Building a Dataframe from JSON

In the following block of code we:

  1. Translate the JSON records into a dataframe
  2. Remove columns that have no metadata description. This would be a bad idea in general but here we remove these columns since the above analysis suggests that they are unlikely to contain useful information.
  3. Examine the top of the table
In [45]:
# Load the data from JSON and assign column titles
stops = pd.DataFrame(
    stops_json['data'],
    columns=[c['name'] for c in stops_json['meta']['view']['columns']])

stops.head()
Out[45]:
sid id position created_at created_meta updated_at updated_meta meta Incident Number Call Date/Time Location Incident Type Dispositions Location - Latitude Location - Longitude
0 1 29A1B912-A0A9-4431-ADC9-FB375809C32E 1 1444146408 932858 1444146408 932858 None 2015-00004825 2015-01-26T00:10:00 SAN PABLO AVE / MARIN AVE T M None None
1 2 1644D161-1113-4C4F-BB2E-BF780E7AE73E 2 1444146408 932858 1444146408 932858 None 2015-00004829 2015-01-26T00:50:00 SAN PABLO AVE / CHANNING WAY T M None None
2 3 5338ABAB-1C96-488D-B55F-6A47AC505872 3 1444146408 932858 1444146408 932858 None 2015-00004831 2015-01-26T01:03:00 UNIVERSITY AVE / NINTH ST T M None None
3 4 21B6CBE4-9865-460F-97BC-6B26C6EF2FDB 4 1444146408 932858 1444146408 932858 None 2015-00004848 2015-01-26T07:16:00 2000 BLOCK BERKELEY WAY 1194 BM4ICN None None
4 5 0D85FA92-80E9-48C2-B409-C3270251CD12 5 1444146408 932858 1444146408 932858 None 2015-00004849 2015-01-26T07:43:00 1700 BLOCK SAN PABLO AVE 1194 BM4ICN None None

Preliminary Observations

What do we observe so far?

We observe:

  1. The Incident Number appears to have the year encoded in it.
  2. The Call Date/Time Field looks to be formatted in YYYY-MM-DDTHH:MM:SS. I am guessing T means "Time".
  3. Incident Type has some weird coding. This is define in the column meta data: This is the occurred incident type created in the CAD program. A code signifies a traffic stop (T), suspicious vehicle stop (1196), pedestrian stop (1194) and bicycle stop (1194B).

Recall the description:

Stop Data





EDA

Now that we have loaded our various data files. Let's try to understand a bit more about the data by examining properties of individual fields.

EDA on the Calls Data

In [46]:
calls.head()
Out[46]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday 37.856572 -122.275241
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday 37.865511 -122.309967
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday 37.868574 -122.270415
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA Tuesday 37.881142 -122.30191
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA Saturday 37.870308 -122.26805




Checking that City and State are Redundant

We notice that there are city and state columns. Since this is supposed to be data for the city of Berkeley these columns appear to be redundant. Let's quickly compute the number of occurences of unique values for these two columns.

In [47]:
calls.groupby(["City", "State"]).count()
Out[47]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR Day Lat Lon
City State
Berkeley CA 3788 3788 3788 3788 3788 3788 3788 3788 3766 3788 3629 3629




Are Case Numbers unique?

Case numbers are probably used internally to track individual cases and my reference other data we don't have access to. However, it is possible that multiple calls could be associated with the same case. Let's see if the case numbers are all unique.

In [48]:
print("There are", len(calls['CASENO'].unique()), "unique case numbers.")
print("There are", len(calls), "calls in the table.")
There are 3788 unique case numbers.
There are 3788 calls in the table.

Are case numbers assigned consecutively.

In [49]:
calls['CASENO'].sort_values().reset_index(drop=True).plot()
plt.xlabel("Ordered Location in Data")
plt.ylabel("Case Number")
Out[49]:
Text(0,0.5,'Case Number')

I like to use interactive plotting tools so I can hover the mouse over the plot and read the values. The cufflinks library adds plotly support to Pandas.

In [50]:
calls['CASENO'].sort_values().reset_index(drop=True).iplot(
    layout = dict(yaxis=dict(title="Case Number", hoverformat="d"), 
                  xaxis=dict(title="Ordered Location in Data")))

Examining the distribution of case numbers shows a similar pattern

In [51]:
calls['CASENO'].iplot(kind="hist",bins=100);

What might we be observing?

One possible explanation is that case numbers were assigned consecutively and then sampled uniformly at different rates for two different periods. We will be able to understand this better by looking at the dates on the cases.





Examining the Date

Given the weird behavior with the case numbers let's dig into the date in which events were recorded. Notice in this data we have several pieces of date/time information (this is not uncommon):

  1. EVENTDT: This contains the date the event took place. While it has time information the time appears to be 00:00:00.
  2. EVENTTM: This contains the time at which the event took place.
  3. InDbDate: This appears to be the date at which the data was entered in the database.
In [52]:
calls.head(3)
Out[52]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday 37.856572 -122.275241
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday 37.865511 -122.309967
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday 37.868574 -122.270415

When Pandas loads more complex fields like dates it will often load them as strings:

In [53]:
calls["EVENTDT"][0]
Out[53]:
'04/18/2018 12:00:00 AM'

We will want to convert these to dates. Pandas has a fairly sophisticated function pd.to_datetime which is capable of guessing reasonable conversions of dates to date objects.

In [54]:
dates = pd.to_datetime(calls["EVENTDT"])
dates[0]
Out[54]:
Timestamp('2018-04-18 00:00:00')

We can verify that the translations worked by looking at a few dates:

In [55]:
pd.DataFrame(dict(transformed=dates, original=calls["EVENTDT"])).head()
Out[55]:
transformed original
0 2018-04-18 04/18/2018 12:00:00 AM
1 2018-05-09 05/09/2018 12:00:00 AM
2 2018-05-18 05/18/2018 12:00:00 AM
3 2018-03-13 03/13/2018 12:00:00 AM
4 2018-03-31 03/31/2018 12:00:00 AM

We can also extract the time field:

In [56]:
times = pd.to_datetime(calls["EVENTTM"]).dt.time
times.head()
Out[56]:
0    22:17:00
1    21:25:00
2    20:00:00
3    08:50:00
4    13:29:00
Name: EVENTTM, dtype: object

To combine the correct date and correct time field we use the built-in python datetime combine function.

In [57]:
from datetime import datetime
timestamps = pd.to_datetime(pd.concat([dates, times], axis=1).apply(
    lambda r: datetime.combine(r['EVENTDT'], r['EVENTTM']), axis=1))
timestamps.head()
Out[57]:
0   2018-04-18 22:17:00
1   2018-05-09 21:25:00
2   2018-05-18 20:00:00
3   2018-03-13 08:50:00
4   2018-03-31 13:29:00
dtype: datetime64[ns]

We now updated calls to contain this additional informations:

In [58]:
calls['timestamp'] = timestamps
calls.head()
Out[58]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon timestamp
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday 37.856572 -122.275241 2018-04-18 22:17:00
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday 37.865511 -122.309967 2018-05-09 21:25:00
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday 37.868574 -122.270415 2018-05-18 20:00:00
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA Tuesday 37.881142 -122.30191 2018-03-13 08:50:00
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA Saturday 37.870308 -122.26805 2018-03-31 13:29:00

What time range does the data represent

In [59]:
calls['timestamp'].min()
Out[59]:
Timestamp('2018-03-08 00:00:00')
In [60]:
calls['timestamp'].max()
Out[60]:
Timestamp('2018-08-19 22:25:00')




Back to the Case Numbers

In [61]:
(
    calls
        .sort_values('timestamp')
        .iplot(
            mode='markers', size=5,
            x='timestamp', y='CASENO',
            layout = dict(yaxis=dict(title="Case Number", hoverformat="d"), 
                  xaxis=dict(title="Date of Call")))
)

Explanation?

Perhaps there are multiple different record books with different numbering schemes? This might be something worth investigating further.

A Negative Result...

In the above analysis of case numbers all we can really conclude is that we don't understand how this variable was created. The patterns in the values suggest that there may be some sampling and it is possibly worth contacting the data provider to learn more.





Are there any other interesting temporal patterns

Do more calls occur on a particular day of the week?

In [62]:
dow = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
calls.groupby('Day')['CASENO'].count()[dow].iplot(kind='bar', yTitle="Count")

How about temporal patterns within a day?

In [63]:
ts = calls['timestamp']
minute_of_day = ts.dt.hour * 60 + ts.dt.minute
hour_of_day = minute_of_day / 60.

calls['minute_of_day'] = minute_of_day
calls['hour_of_day'] = hour_of_day
In [64]:
py.iplot(ff.create_distplot([hour_of_day],group_labels=["Hour"],bin_size=1))

Observations?

In the above plot we see the standard pattern of limited activity early in the morning around here 6:00AM.





Smoothing Parameters

In the above plot we see a smoothed curve approximating the histogram. This is an example of a kernel density estimator (KDE). The KDE, like the histogram, has a parameter that determines it's smoothness. Many packages (Plotly and Seaborn) use a boostrap like procedure to choose the best value.

To understand how this parameter works we will use seaborn which let's you also set the parameter manually.

In [65]:
sns.distplot(hour_of_day, rug=False)
/Users/fperez/usr/conda/envs/data100/lib/python3.6/site-packages/scipy/stats/stats.py:1713: FutureWarning:

Using a non-tuple sequence for multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`. In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a different result.

Out[65]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a1b5fbd68>

Notice in the above plot that the interpolation tries to follow the histogram to closely.

Stratified Analysis

To better understand the time of day a report occurs we could stratify the analysis by the day of the week. To do this we will use box plots.

In [66]:
## Using Pandas built in box plot
# calls['hour_of_day'] = minute_in_day
# calls.boxplot('hour_of_day', by='Day')
In [67]:
groups = calls.groupby("Day")
boxes = {i: go.Box(y=df["hour_of_day"], name=i) for (i, df) in groups}
py.iplot([boxes[d] for d in dow])
In [68]:
py.iplot(ff.create_violin(calls, data_header='hour_of_day', group_header="Day"))

Observations?

There are no very clear patterns here. It is possible Fridays might have crimes shifted slightly more to the evening. In general the time a crime is reported seems fairly consistent throughout the week.





Examining the Event

We also have data about the different kinds of crimes being reported

In [69]:
calls.head()
Out[69]:
CASENO OFFENSE EVENTDT EVENTTM CVLEGEND CVDOW InDbDate Block_Location BLKADDR City State Day Lat Lon timestamp minute_of_day hour_of_day
0 18022300 DISTURBANCE 04/18/2018 12:00:00 AM 22:17 DISORDERLY CONDUCT 3 09/06/2018 03:30:12 AM OREGON STREET &amp; MCGEE AVE\nBerkeley, CA\n(... OREGON STREET & MCGEE AVE Berkeley CA Wednesday 37.856572 -122.275241 2018-04-18 22:17:00 1337 22.283333
1 18026683 THEFT MISD. (UNDER $950) 05/09/2018 12:00:00 AM 21:25 LARCENY 3 09/06/2018 03:30:13 AM 200 UNIVERSITY AVE\nBerkeley, CA\n(37.865511, ... 200 UNIVERSITY AVE Berkeley CA Wednesday 37.865511 -122.309967 2018-05-09 21:25:00 1285 21.416667
2 18038550 THEFT MISD. (UNDER $950) 05/18/2018 12:00:00 AM 20:00 LARCENY 5 09/06/2018 03:30:09 AM 2200 MILVIA ST\nBerkeley, CA\n(37.868574, -122... 2200 MILVIA ST Berkeley CA Friday 37.868574 -122.270415 2018-05-18 20:00:00 1200 20.000000
3 18014810 BURGLARY AUTO 03/13/2018 12:00:00 AM 08:50 BURGLARY - VEHICLE 2 09/06/2018 03:30:08 AM 1200 SIXTH ST\nBerkeley, CA\n(37.881142, -122.... 1200 SIXTH ST Berkeley CA Tuesday 37.881142 -122.30191 2018-03-13 08:50:00 530 8.833333
4 18018643 ALCOHOL OFFENSE 03/31/2018 12:00:00 AM 13:29 LIQUOR LAW VIOLATION 6 09/06/2018 03:30:11 AM CENTER STREET &amp; SHATTUCK AVE\nBerkeley, CA... CENTER STREET & SHATTUCK AVE Berkeley CA Saturday 37.870308 -122.26805 2018-03-31 13:29:00 809 13.483333

The Offense Field

The Offense field appears to contain the specific crime being reported. As nominal data we might want to see a summary constructed by computing counts of each offense type:

In [70]:
calls['OFFENSE'].value_counts(dropna=False).iplot(kind="bar")

Observations?

Car burglary and misdemeanor theft seem to be the most common crimes with many other types of crimes occurring rarely.





CVLEGEND

The CVLEGEND filed provides the broad category of crime and is a good mechanism to group potentially similar crimes.

In [71]:
calls['CVLEGEND'].value_counts(dropna=False).iplot(kind="bar")

Notice that when we group by the crime time we see that larceny becomes the dominant category. Larceny is essentially stealing -- taking someone else stuff without force.

Stratified Analysis of Time of Day by CVLEGEND

View the crime time periods broken down by crime type:

In [72]:
boxes = [(len(df), go.Box(y=df["hour_of_day"], name=i)) for (i, df) in calls.groupby("CVLEGEND")]
py.iplot([r[1] for r in sorted(boxes, key=lambda x:x[0], reverse=True)])
In [73]:
py.iplot(ff.create_distplot([
    calls[calls['CVLEGEND'] == "NOISE VIOLATION"]['hour_of_day'],
    calls[calls['CVLEGEND'] == "DRUG VIOLATION"]['hour_of_day'],
    calls[calls['CVLEGEND'] == "LIQUOR LAW VIOLATION"]['hour_of_day'],
    calls[calls['CVLEGEND'] == "FRAUD"]['hour_of_day']
],
    group_labels=["Noise Violation", "Drug Violation", "Liquor Violation", "Fraud"], 
    ))

Examining Location information

Let's examine the geographic data (latitude and longitude). Recall that we had some missing values. Let's look at the behavior of these missing values according to crime type.

In [74]:
missing_lat_lon = calls[calls[['Lat', 'Lon']].isnull().any(axis=1)]
missing_lat_lon['CVLEGEND'].value_counts().iplot(kind="bar")

Observations?

There is a clear bias towards drug violations that is not present in the original data. Therefore we should be careful when dropping missing values!

We might further normalize the analysis by the frequency to find which type of crime has the highest proportion of missing values.

In [75]:
(
    missing_lat_lon['CVLEGEND'].value_counts() / calls['CVLEGEND'].value_counts()
).sort_values(ascending=False).iplot(kind="bar")




Day of Year and Missing Values:

We might also want to examine the time of day in which latitude and longitude are missing:

In [76]:
ts = calls['timestamp']

py.iplot(ff.create_distplot([calls['timestamp'].dt.dayofyear, 
                             missing_lat_lon['timestamp'].dt.dayofyear],
                            group_labels=["all data", "missing lat-lon"],bin_size=2))

Observations?

Pretty similar

In [77]:
#!pip install --upgrade folium
import folium
print(folium.__version__, "should be at least 0.3.0")
0.6.0 should be at least 0.3.0
In [78]:
import folium
import folium.plugins # The Folium Javascript Map Library

SF_COORDINATES = (37.87, -122.28)
sf_map = folium.Map(location=SF_COORDINATES, zoom_start=13)
locs = calls[['Lat', 'Lon']].astype('float').dropna().as_matrix()
heatmap = folium.plugins.HeatMap(locs.tolist(), radius = 10)
sf_map.add_child(heatmap)
/Users/fperez/usr/conda/envs/data100/lib/python3.6/site-packages/ipykernel_launcher.py:6: FutureWarning:

Method .as_matrix will be removed in a future version. Use .values instead.

Out[78]:

Questions

  1. Is campus really the safest place to be?
  2. Why are all the calls located on the street and at often at intersections?
In [79]:
cluster = folium.plugins.MarkerCluster()
for _, r in calls[['Lat', 'Lon', 'CVLEGEND']].tail(1000).dropna().iterrows():
    cluster.add_child(
        folium.Marker([float(r["Lat"]), float(r["Lon"])], popup=r['CVLEGEND']))
    
sf_map = folium.Map(location=SF_COORDINATES, zoom_start=13)
sf_map.add_child(cluster)
sf_map
Out[79]: